diff --git a/scripts/createLedgerFromLegacyProject.js b/scripts/createLedgerFromLegacyProject.js index d2d2a02..7a058d9 100644 --- a/scripts/createLedgerFromLegacyProject.js +++ b/scripts/createLedgerFromLegacyProject.js @@ -77,10 +77,11 @@ export async function loadLedger(legacyDir: string): Promise { identities.forEach(({username, aliases}) => { username = username.replace("_", "-"); const userId = ledger.createIdentity("USER", username); - const addresses = aliasParser.parseOrThrow(aliases); - addresses.forEach((a) => { - ledger.addAlias(userId, a); - }); + const fullAliases = aliases.map((a) => ({ + address: resolveAlias(a, discourseServer.serverUrl), + description: a, + })); + fullAliases.forEach((a) => ledger.addAlias(userId, a)); }); return ledger; diff --git a/sharness/__snapshots__/test-instance/data/ledger.json b/sharness/__snapshots__/test-instance/data/ledger.json index d8bf2bf..11478d7 100644 --- a/sharness/__snapshots__/test-instance/data/ledger.json +++ b/sharness/__snapshots__/test-instance/data/ledger.json @@ -1,13 +1,8 @@ [ {"action":{"identity":{"address":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000YX6zzoNxYwGgLduJqWVoAg\u0000","aliases":[],"id":"YX6zzoNxYwGgLduJqWVoAg","name":"dandelion","subtype":"USER"},"type":"CREATE_IDENTITY"},"ledgerTimestamp":1595960623457,"uuid":"Z2Yido2VZy7kZNFNQyOrGw","version":"1"}, -{"action":{"alias":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000decentralion\u0000","identityId":"YX6zzoNxYwGgLduJqWVoAg","type":"ADD_ALIAS"},"ledgerTimestamp":1595960629051,"uuid":"fJ4p2ql0U9lA8agf98a2WA","version":"1"}, -{"action":{"alias":"N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000dl-proto\u0000","identityId":"YX6zzoNxYwGgLduJqWVoAg","type":"ADD_ALIAS"},"ledgerTimestamp":1595960631279,"uuid":"hkO0hJe1kBXiW2CkUdqtgA","version":"1"}, -{"action":{"alias":"N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000d11\u0000","identityId":"YX6zzoNxYwGgLduJqWVoAg","type":"ADD_ALIAS"},"ledgerTimestamp":1595960632917,"uuid":"6n3FlMcRaiapMhAPZBkMzg","version":"1"}, {"action":{"identityId":"YX6zzoNxYwGgLduJqWVoAg","type":"TOGGLE_ACTIVATION"},"ledgerTimestamp":1595960669346,"uuid":"JSnR9q3hQmtrxCYW88q3Jw","version":"1"}, {"action":{"identity":{"address":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000mbzRr0D3A2wcD1E7p0H2rQ\u0000","aliases":[],"id":"mbzRr0D3A2wcD1E7p0H2rQ","name":"william","subtype":"USER"},"type":"CREATE_IDENTITY"},"ledgerTimestamp":1595960673321,"uuid":"pdZq9EQYh0HpR4faupeXww","version":"1"}, {"action":{"identityId":"mbzRr0D3A2wcD1E7p0H2rQ","type":"TOGGLE_ACTIVATION"},"ledgerTimestamp":1595960684984,"uuid":"lXJfGAKpX2C7eV7WQ13I8A","version":"1"}, -{"action":{"alias":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000wchargin\u0000","identityId":"mbzRr0D3A2wcD1E7p0H2rQ","type":"ADD_ALIAS"},"ledgerTimestamp":1595960689227,"uuid":"MrARMedzEewCPhMI4a8tvQ","version":"1"}, {"action":{"identity":{"address":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000ytxt20G2QLd8Z135K0cyUA\u0000","aliases":[],"id":"ytxt20G2QLd8Z135K0cyUA","name":"beanow","subtype":"USER"},"type":"CREATE_IDENTITY"},"ledgerTimestamp":1595960693126,"uuid":"jEn2LpZRZ7he3wYCJ2DIBg","version":"1"}, -{"action":{"distribution":{"allocations":[{"id":"UJowHzU5CNZ3UAOb3DLoWw","policy":{"budget":"1000000000000000000000","policyType":"BALANCED"},"receipts":[{"amount":"955230194734145601536","id":"YX6zzoNxYwGgLduJqWVoAg"},{"amount":"44769805265854398464","id":"mbzRr0D3A2wcD1E7p0H2rQ"}]}],"credTimestamp":1573344000000,"id":"8CoHqZMDRQ7L1Up6yVqjxQ"},"type":"DISTRIBUTE_GRAIN"},"ledgerTimestamp":1595960739869,"uuid":"R41nebRy7QkSwdWCZ1VW3w","version":"1"}, -{"action":{"alias":"N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000beanow.sc-test\u0000","identityId":"ytxt20G2QLd8Z135K0cyUA","type":"ADD_ALIAS"},"ledgerTimestamp":1595960759765,"uuid":"bOJeGS9PTpJd91I96mSMQQ","version":"1"} -] \ No newline at end of file +{"action":{"distribution":{"allocations":[{"id":"UJowHzU5CNZ3UAOb3DLoWw","policy":{"budget":"1000000000000000000000","policyType":"BALANCED"},"receipts":[{"amount":"955230194734145601536","id":"YX6zzoNxYwGgLduJqWVoAg"},{"amount":"44769805265854398464","id":"mbzRr0D3A2wcD1E7p0H2rQ"}]}],"credTimestamp":1573344000000,"id":"8CoHqZMDRQ7L1Up6yVqjxQ"},"type":"DISTRIBUTE_GRAIN"},"ledgerTimestamp":1595960739869,"uuid":"R41nebRy7QkSwdWCZ1VW3w","version":"1"} +] diff --git a/sharness/__snapshots__/test-instance/output/accounts.json b/sharness/__snapshots__/test-instance/output/accounts.json index 5b21bae..f51641f 100644 --- a/sharness/__snapshots__/test-instance/output/accounts.json +++ b/sharness/__snapshots__/test-instance/output/accounts.json @@ -1 +1 @@ -{"accounts":[{"account":{"active":true,"balance":"955230194734145601536","identity":{"address":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000YX6zzoNxYwGgLduJqWVoAg\u0000","aliases":["N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000decentralion\u0000","N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000dl-proto\u0000","N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000d11\u0000"],"id":"YX6zzoNxYwGgLduJqWVoAg","name":"dandelion","subtype":"USER"},"paid":"955230194734145601536"},"cred":[9.964412806682837,4.981955257329389,5.491477850252737,4.767272434895863,2.383691433744795,1.1919022420821395,0.5960111799878318,0.29807199372197263,0.14911279715073825,2.9893671445152354,1.5028103108200466,0.7569890996491149,0.3816004728774662,0.19214683255432766,0.09651221711467625,0.03643300088087674,0.017911108410865153,0.5039168817648663,0.2515446542905307,0.1254859311713519,0.0625929239108984,0.03125394212589924,0.015643731028961383,0.007859704971617735,0.003968586717210518,0.0020152399575003054,0.2320615233965388,0.11843317241177595,2.478916797039998,1.2554605461732404,0.6278819725342536,0.31407214713260984,0.15716084294928911,0.07870198515162928,0.03946873945127176,0.01984562823539794,0.01002289453676102,0.00509397808303507,0.0026062497971946893,0.0013382443205243108,0.0006856970230950347,0.00034909416290180347,0.0001766932756084404,0.0000893078811352669,0.00004519803089654089,0.000022866558756913162,0.000011536829406986189,0.000005028483459842613,0.0000025093967347794807,0.0000012532127947460712,6.266147941013718e-7,3.1305152891929555e-7,1.5684400448209903e-7,7.822377906804695e-8,3.940741092920162e-8,1.9473556269906007e-8,9.93073565589365e-9,1.2822068590571202e-11,3.492882385917114e-13,1.0567219292203183e-14,4.906787001961001e-16,5.174510810434059e-17,1.2665654793568439e-17,3.2487897313709546e-18,8.391015975205313e-19,2.263988148073925e-19,6.507596121482475e-20,2.0510149096657124e-20,7.246738129557673e-21,2.8708420657819932e-21,1.2471600384006662e-21,5.764971058404004e-22,2.764753350819431e-22,1.352934751818254e-22,64.20023044002419,48.10012096359943,24.050060757314842,12.02503044799422,6.012515241342323,3.0062576250127013,1.5031288135918237,0.7515644070672779,0.3757822036014297,48.18789110182217,40.093945550915414,20.046972775458535,26.02348638772945,13.011743193864772,6.505871596932399,3.0147238554938256],"totalCred":359.0537402900019},{"account":{"active":true,"balance":"44769805265854398464","identity":{"address":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000mbzRr0D3A2wcD1E7p0H2rQ\u0000","aliases":["N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000wchargin\u0000"],"id":"mbzRr0D3A2wcD1E7p0H2rQ","name":"william","subtype":"USER"},"paid":"44769805265854398464"},"cred":[3.0355871933171628,1.5180447426706114,0.758522149747263,0.35772756510413695,0.17880856625520503,0.08934775791786041,0.04461382001216829,0.02224050627802738,0.011043452849261753,0.5907109804847651,0.2872287516799533,0.1380304316008853,0.06590929274753382,0.03160805025817233,0.01536522429157375,0.5195057198222482,0.2600582519406973,0.6350677984109149,0.31794768579736005,0.1592602388725934,0.07978016111107428,0.039932600385087086,0.01994954022653178,0.009936930656128846,0.004929731096662773,0.0024339189494363396,0.27016305605692953,0.13267911731495818,3.6466393478233696,1.807317526258443,0.9035070636815883,0.45162237097531105,0.22568641610467133,0.11272164437535097,0.05624307531221834,0.028010279146347117,0.013905059154111506,0.006869998762401194,0.003375738625523442,0.0016527498908347552,0.0008098000825844982,0.00039865438993796296,0.00019718100081144284,0.00009762925707467471,0.00004827053820842992,0.000023867725795572247,0.000011830312869256514,0.000006655087678278739,0.000003332388834281196,0.0000016676799897842666,8.338315981637971e-7,4.171716672132889e-7,2.0826759358419323e-7,1.0433201996509918e-7,5.1870488587371434e-8,2.6165393488380526e-8,1.2888739223249615e-8,8.04939141574632e-11,2.718043565816994e-12,8.889367764770289e-14,3.019908744017573e-15,7.305520639252102e-17,1.2973598613354522e-17,3.2692980381726054e-18,8.413450567275936e-19,2.2669043095415683e-19,6.511746026108073e-20,2.0516672368007957e-20,7.247889948247781e-21,2.8710702747011715e-21,1.247209601611556e-21,5.765085626262077e-22,2.764780835722178e-22,1.3529414788138387e-22,3.85511898683884e-24,3.017795706654427e-25,7.555328736624607e-26,1.8895398626051377e-26,4.734319266443446e-27,1.1886222148733845e-27,2.998070358183104e-28,7.629744669882044e-29,1.9763479413455937e-29,4.4130708931334205e-30,9.640123293127576e-31,2.2223385880849707e-31,6.074903007805852e-32,1.4064626051023546e-32,3.3619358671189635e-33,7.648468376569111e-34],"totalCred":16.855585049039963},{"account":{"active":false,"balance":"0","identity":{"address":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000ytxt20G2QLd8Z135K0cyUA\u0000","aliases":["N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000beanow.sc-test\u0000"],"id":"ytxt20G2QLd8Z135K0cyUA","name":"beanow","subtype":"USER"},"paid":"0"},"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864.2382119429724],"totalCred":864.2382119429724}],"intervalEndpoints":[1520121600000,1520726400000,1521331200000,1521936000000,1522540800000,1523145600000,1523750400000,1524355200000,1524960000000,1525564800000,1526169600000,1526774400000,1527379200000,1527984000000,1528588800000,1529193600000,1529798400000,1530403200000,1531008000000,1531612800000,1532217600000,1532822400000,1533427200000,1534032000000,1534636800000,1535241600000,1535846400000,1536451200000,1537056000000,1537660800000,1538265600000,1538870400000,1539475200000,1540080000000,1540684800000,1541289600000,1541894400000,1542499200000,1543104000000,1543708800000,1544313600000,1544918400000,1545523200000,1546128000000,1546732800000,1547337600000,1547942400000,1548547200000,1549152000000,1549756800000,1550361600000,1550966400000,1551571200000,1552176000000,1552780800000,1553385600000,1553990400000,1554595200000,1555200000000,1555804800000,1556409600000,1557014400000,1557619200000,1558224000000,1558828800000,1559433600000,1560038400000,1560643200000,1561248000000,1561852800000,1562457600000,1563062400000,1563667200000,1564272000000,1564876800000,1565481600000,1566086400000,1566691200000,1567296000000,1567900800000,1568505600000,1569110400000,1569715200000,1570320000000,1570924800000,1571529600000,1572134400000,1572739200000,1573344000000,1573948800000],"unclaimedAliases":[{"address":"N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000system\u0000","cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.00000001131642,16.000000005701803,8.000000002852337,4.000000001426214,2.0000000007131082,1.0000000003565543,0.5000000001782772,0.2500000000891386,0.1250000000445693,0.06250000002228465,0.03125000001114232,0.01562500000557116,0.00781250000278558,0.00390625000139279,0.001953125000696395,0.0009765625003481976,0.0004882812501740988,0.00001370060090190342,0.000001106713109888182,2.7784142671461363e-7,6.958391522249454e-8,1.74467450431116e-8,4.381832913685175e-9,1.105443407781644e-9,2.813556353587502e-10,7.288699424407906e-11,1.4993848361602337e-11,3.1561313830549412e-12,7.533173205082422e-13,1.983060388343377e-13,4.8309400257697203e-14,1.193000809203665e-14,2.7632560124633197e-15],"description":"[@system](https://sourcecred-test.discourse.group/u/system/)","totalCred":63.999526919519596}]} \ No newline at end of file +{"accounts":[{"account":{"active":true,"balance":"955230194734145601536","identity":{"address":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000YX6zzoNxYwGgLduJqWVoAg\u0000","aliases":[],"id":"YX6zzoNxYwGgLduJqWVoAg","name":"dandelion","subtype":"USER"},"paid":"955230194734145601536"},"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"totalCred":0},{"account":{"active":true,"balance":"44769805265854398464","identity":{"address":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000mbzRr0D3A2wcD1E7p0H2rQ\u0000","aliases":[],"id":"mbzRr0D3A2wcD1E7p0H2rQ","name":"william","subtype":"USER"},"paid":"44769805265854398464"},"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"totalCred":0},{"account":{"active":false,"balance":"0","identity":{"address":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000ytxt20G2QLd8Z135K0cyUA\u0000","aliases":[],"id":"ytxt20G2QLd8Z135K0cyUA","name":"beanow","subtype":"USER"},"paid":"0"},"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"totalCred":0}],"intervalEndpoints":[1520121600000,1520726400000,1521331200000,1521936000000,1522540800000,1523145600000,1523750400000,1524355200000,1524960000000,1525564800000,1526169600000,1526774400000,1527379200000,1527984000000,1528588800000,1529193600000,1529798400000,1530403200000,1531008000000,1531612800000,1532217600000,1532822400000,1533427200000,1534032000000,1534636800000,1535241600000,1535846400000,1536451200000,1537056000000,1537660800000,1538265600000,1538870400000,1539475200000,1540080000000,1540684800000,1541289600000,1541894400000,1542499200000,1543104000000,1543708800000,1544313600000,1544918400000,1545523200000,1546128000000,1546732800000,1547337600000,1547942400000,1548547200000,1549152000000,1549756800000,1550361600000,1550966400000,1551571200000,1552176000000,1552780800000,1553385600000,1553990400000,1554595200000,1555200000000,1555804800000,1556409600000,1557014400000,1557619200000,1558224000000,1558828800000,1559433600000,1560038400000,1560643200000,1561248000000,1561852800000,1562457600000,1563062400000,1563667200000,1564272000000,1564876800000,1565481600000,1566086400000,1566691200000,1567296000000,1567900800000,1568505600000,1569110400000,1569715200000,1570320000000,1570924800000,1571529600000,1572134400000,1572739200000,1573344000000,1573948800000],"unclaimedAliases":[{"alias":{"address":"N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000beanow.sc-test\u0000","description":"[@beanow.sc-test](https://sourcecred-test.discourse.group/u/beanow.sc-test/)"},"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864.2115904313977],"totalCred":864.2115904313977},{"alias":{"address":"N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000d11\u0000","description":"[@d11](https://sourcecred-test.discourse.group/u/d11/)"},"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.08229588100335,36.500508836926,18.248032401849635,9.121802075137694,4.55871456274136,2.277222545959448,1.1365754419466514,0.5664325520175447,0.281666433875728,48.15606434473354,40.08052463555836,20.041695757669125,23.48982867253736,11.710819502514479,5.843416817383508,2.7270240858618155],"totalCred":264.8226245477156},{"alias":{"address":"N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000dl-proto\u0000","description":"[@dl-proto](https://sourcecred-test.discourse.group/u/dl-proto/)"},"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.117942374064043,11.599612324422548,5.802028405066731,2.9032283853656993,1.4538006817186095,0.7290350798263235,0.3665533718356815,0.18513185509624583,0.0941157697367867,0.03182675709208116,0.013420915357494331,0.005277017789481313,2.533657715192099,1.300923691350296,0.6624547795488911,0.3143212812066306],"totalCred":52.11333040466965},{"alias":{"address":"N\u0000sourcecred\u0000discourse\u0000user\u0000https://sourcecred-test.discourse.group\u0000system\u0000","description":"[@system](https://sourcecred-test.discourse.group/u/system/)"},"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.00000001131642,16.000000005701803,8.000000002852337,4.000000001426214,2.0000000007131087,1.0000000003565543,0.5000000001782772,0.2500000000891386,0.1250000000445693,0.06250000002228465,0.03125000001114232,0.01562500000557116,0.00781250000278558,0.00390625000139279,0.001953125000696395,0.0009765625003481976,0.0004882812501740988,0.000005885557697513402,9.089639964805361e-7,2.2823990707618322e-7,5.707474213425337e-8,1.432909825053719e-8,3.608762421874854e-9,9.149341897630789e-10,2.348429978908058e-10,6.180204758560283e-11,1.1535423547806974e-11,2.724066490732819e-12,6.82214583420928e-13,1.8724224634421185e-13,4.6798189373004e-14,1.1730625827675222e-14,2.7631709107473555e-15],"totalCred":63.99951884047379},{"alias":{"address":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000decentralion\u0000","description":"[@decentralion](https://github.com/decentralion)"},"cred":[9.964412806682837,4.981955257329389,5.491477850252737,4.767272434895863,2.383691433744795,1.1919022420821395,0.5960111799878318,0.29807199372197263,0.14911279715073825,2.9893671445152354,1.5028103108200466,0.7569890996491149,0.3816004728774662,0.19214683255432766,0.09651221711467625,0.03643300088087674,0.017911108410865153,0.5039168817648663,0.2515446542905307,0.1254859311713519,0.0625929239108984,0.03125394212589924,0.015643731028961383,0.007859704971617735,0.003968586717210518,0.0020152399575003054,0.2320615233965388,0.11843317241177595,2.478916797039998,1.2554605461732404,0.6278819725342536,0.31407214713260984,0.15716084294928911,0.07870198515162928,0.03946873945127176,0.01984562823539794,0.01002289453676102,0.00509397808303507,0.0026062497971946893,0.0013382443205243108,0.0006856970230950347,0.00034909416290180347,0.0001766932756084404,0.0000893078811352669,0.00004519803089654089,0.000022866558756913162,0.000011536829406986189,0.000005028483459842613,0.0000025093967347794807,0.0000012532127947460712,6.266147941013718e-7,3.1305152891929555e-7,1.5684400448209903e-7,7.822377906804695e-8,3.940741092920162e-8,1.9473556269906007e-8,9.93073565589365e-9,1.2822068590571202e-11,3.492882385917114e-13,1.0567219292203183e-14,4.906787001961001e-16,5.1745108104340604e-17,1.2665654793568439e-17,3.2487897313709546e-18,8.391015975205313e-19,2.263988148073925e-19,6.507596121482475e-20,2.0510149096657124e-20,7.246738129557673e-21,2.8708420657819932e-21,1.2471600384006662e-21,5.764971058404004e-22,2.764753350819431e-22,1.352934751818254e-22,1.6382277350202986e-24,2.4776113178880667e-25,6.20397991041513e-26,1.5491767716354687e-26,3.886624798493964e-27,9.784989390208872e-28,2.480367652859069e-28,6.365986830589219e-29,1.6752208349529377e-29,3.1267563383719516e-30,7.383678548979617e-31,1.8491567411787323e-31,5.07522552598162e-32,1.2684693106327504e-32,3.179594966960949e-33,7.48959302360735e-34],"totalCred":42.14441492823704},{"alias":{"address":"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000wchargin\u0000","description":"[@wchargin](https://github.com/wchargin)"},"cred":[3.0355871933171628,1.5180447426706114,0.758522149747263,0.35772756510413695,0.17880856625520503,0.08934775791786041,0.04461382001216829,0.02224050627802738,0.011043452849261753,0.5907109804847651,0.2872287516799533,0.1380304316008853,0.06590929274753382,0.03160805025817233,0.01536522429157375,0.5195057198222482,0.2600582519406973,0.6350677984109149,0.31794768579736005,0.1592602388725934,0.07978016111107428,0.039932600385087086,0.01994954022653178,0.009936930656128846,0.004929731096662773,0.0024339189494363396,0.27016305605692953,0.13267911731495818,3.6466393478233696,1.807317526258443,0.9035070636815883,0.45162237097531105,0.22568641610467133,0.11272164437535097,0.05624307531221834,0.028010279146347117,0.013905059154111506,0.006869998762401194,0.003375738625523442,0.0016527498908347552,0.0008098000825844982,0.00039865438993796296,0.00019718100081144284,0.00009762925707467471,0.00004827053820842992,0.000023867725795572247,0.000011830312869256514,0.000006655087678278739,0.000003332388834281196,0.0000016676799897842666,8.338315981637971e-7,4.171716672132889e-7,2.0826759358419323e-7,1.0433201996509918e-7,5.1870488587371434e-8,2.6165393488380526e-8,1.2888739223249615e-8,8.04939141574632e-11,2.718043565816994e-12,8.889367764770289e-14,3.019908744017573e-15,7.305520639252103e-17,1.2973598613354522e-17,3.2692980381726054e-18,8.413450567275936e-19,2.2669043095415683e-19,6.511746026108073e-20,2.0516672368007957e-20,7.247889948247781e-21,2.8710702747011715e-21,1.247209601611556e-21,5.765085626262077e-22,2.764780835722178e-22,1.3529414788138387e-22,1.6382570680287922e-24,2.4776145467208013e-25,6.203983994979385e-26,1.549177265335096e-26,3.88662542343509e-27,9.784990191445333e-28,2.4803677581012156e-28,6.365986973661637e-29,1.6752208562135294e-29,3.1267563679202625e-30,7.383678589415221e-31,1.8491567490481679e-31,5.075225544164356e-32,1.268469314793996e-32,3.179594976907347e-33,7.489593046468724e-34],"totalCred":16.855585049039963}]} \ No newline at end of file diff --git a/sharness/__snapshots__/test-instance/output/credResult.json b/sharness/__snapshots__/test-instance/output/credResult.json index c15839c..6136ca1 100644 --- a/sharness/__snapshots__/test-instance/output/credResult.json +++ b/sharness/__snapshots__/test-instance/output/credResult.json @@ -1 +1 @@ -[{"type":"sourcecred/credResult","version":"0.1.0"},{"credData":{"edgeOverTime":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"edgeSummaries":[{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":32.29828771402006,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":8.812893993591,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":12.727126280329177,"forwardFlow":0},{"backwardFlow":46.749988656366604,"forwardFlow":0},{"backwardFlow":26.416079471837595,"forwardFlow":0},{"backwardFlow":27.51421046907261,"forwardFlow":0},{"backwardFlow":29.039444656616837,"forwardFlow":0},{"backwardFlow":31.26984169521686,"forwardFlow":0},{"backwardFlow":20.117856502216735,"forwardFlow":0},{"backwardFlow":27.496709430521587,"forwardFlow":0},{"backwardFlow":15.750254807760186,"forwardFlow":0},{"backwardFlow":26.416079471837595,"forwardFlow":0},{"backwardFlow":28.443439918740403,"forwardFlow":0},{"backwardFlow":23.275438217401323,"forwardFlow":0},{"backwardFlow":23.275438217401323,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":6.512495865158635,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":0.39742462778944476,"forwardFlow":0},{"backwardFlow":3.1285100141760416,"forwardFlow":0},{"backwardFlow":0.9052444751297455,"forwardFlow":0},{"backwardFlow":1.6019018209716465,"forwardFlow":0},{"backwardFlow":2.8139924208978617,"forwardFlow":0},{"backwardFlow":0.4914295483277602,"forwardFlow":0},{"backwardFlow":1.7082064460986741,"forwardFlow":0},{"backwardFlow":0.7243829605657011,"forwardFlow":0},{"backwardFlow":0.7243829605657011,"forwardFlow":0},{"backwardFlow":0,"forwardFlow":56.11886804682345},{"backwardFlow":0,"forwardFlow":12.84644398001715},{"backwardFlow":0,"forwardFlow":14.221719959370201},{"backwardFlow":0,"forwardFlow":7.875127403880093},{"backwardFlow":0,"forwardFlow":3.9375637019400465},{"backwardFlow":0,"forwardFlow":13.208039735918797},{"backwardFlow":0,"forwardFlow":13.208039735918797},{"backwardFlow":0,"forwardFlow":13.757105234536304},{"backwardFlow":0,"forwardFlow":10.058928251108368},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":0,"forwardFlow":4.4064469967955},{"backwardFlow":2.9094297771751654,"forwardFlow":0},{"backwardFlow":5.8437485820458255,"forwardFlow":0},{"backwardFlow":3.3020099339796993,"forwardFlow":0},{"backwardFlow":3.439276308634076,"forwardFlow":0},{"backwardFlow":3.5554299898425503,"forwardFlow":0},{"backwardFlow":3.3020099339796993,"forwardFlow":0},{"backwardFlow":3.6299305820771046,"forwardFlow":0},{"backwardFlow":3.9087302119021077,"forwardFlow":0},{"backwardFlow":2.514732062777092,"forwardFlow":0},{"backwardFlow":3.4370886788151984,"forwardFlow":0},{"backwardFlow":1.9687818509700232,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":4.037285964252508,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.101611749198875,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":1.5908907850411471,"forwardFlow":0},{"backwardFlow":2.9094297771751654,"forwardFlow":0},{"backwardFlow":1.23166644969911,"forwardFlow":0.30759498291839477},{"backwardFlow":213.27421198072437,"forwardFlow":53.209378966705195},{"backwardFlow":0.884190589907874,"forwardFlow":0.47062937565373236},{"backwardFlow":0.8432201719069429,"forwardFlow":0.47062937565373236},{"backwardFlow":2.2065334515694763,"forwardFlow":0.47062937565373236},{"backwardFlow":2.2065334515694763,"forwardFlow":0.47062937565373236},{"backwardFlow":2.6366704115765787,"forwardFlow":0.47062937565373236},{"backwardFlow":1.2722374646747094,"forwardFlow":0.2792778946602046},{"backwardFlow":1.2303495512411717,"forwardFlow":0.02325631576540384},{"backwardFlow":2.4925440075851393,"forwardFlow":0.02325631576540384},{"backwardFlow":1.5909254047775938,"forwardFlow":0.47062937565373236},{"backwardFlow":2.4070255266787366,"forwardFlow":0.47062937565373236},{"backwardFlow":2.1235942406373876,"forwardFlow":0.38827914315103995},{"backwardFlow":2.1836068977221763,"forwardFlow":0.4105573631980585},{"backwardFlow":2.1836068977221763,"forwardFlow":0.4105573631980585},{"backwardFlow":3.5330259381910283,"forwardFlow":0.47062937565373236},{"backwardFlow":2.552882721546224,"forwardFlow":0.47062937565373236},{"backwardFlow":0.0453399912438381,"forwardFlow":0.18552453127298213},{"backwardFlow":1.2683849214654965,"forwardFlow":0.02325631576540384},{"backwardFlow":0.7501593824005399,"forwardFlow":0.38827914315103995},{"backwardFlow":0.7501593824005399,"forwardFlow":0.38827914315103995},{"backwardFlow":0.8261684338703017,"forwardFlow":0.18552453127298213},{"backwardFlow":0.8261684338703017,"forwardFlow":0.18552453127298213},{"backwardFlow":0.8261684338703017,"forwardFlow":0.18552453127298213},{"backwardFlow":0.8261684338703017,"forwardFlow":0.18552453127298213},{"backwardFlow":0.3544299202677063,"forwardFlow":0.18552453127298213},{"backwardFlow":1.2382777707009582,"forwardFlow":0.18552453127298213},{"backwardFlow":1.151866722683174,"forwardFlow":0.38827914315103995},{"backwardFlow":1.2454418124217246,"forwardFlow":0.38827914315103995},{"backwardFlow":0.8218193073881626,"forwardFlow":0.18552453127298213},{"backwardFlow":0.8107798830997714,"forwardFlow":0.47062937565373236},{"backwardFlow":1.2722374646747094,"forwardFlow":0.29129792259202597},{"backwardFlow":2.315446054868898,"forwardFlow":0.4853129546154356},{"backwardFlow":0.0453399912438381,"forwardFlow":0.2831253267450182},{"backwardFlow":1.2876486074945066,"forwardFlow":0.5004729146873527},{"backwardFlow":1.188272908940098,"forwardFlow":0.5004729146873527},{"backwardFlow":1.3261114489310903,"forwardFlow":0.4853129546154356},{"backwardFlow":1.1148786856931958,"forwardFlow":0.26419748863055076},{"backwardFlow":1.2522208563023216,"forwardFlow":0.5004729146873527},{"backwardFlow":2.0431910139122267,"forwardFlow":2.6366704115765787},{"backwardFlow":0.26517394513728776,"forwardFlow":1.2722374646747094},{"backwardFlow":0.5004843156165583,"forwardFlow":2.315446054868898},{"backwardFlow":0.5004843156165583,"forwardFlow":1.2303495512411717},{"backwardFlow":0.5004843156165583,"forwardFlow":2.4925440075851393},{"backwardFlow":2.0431910139122267,"forwardFlow":1.5909254047775938},{"backwardFlow":2.0431910139122267,"forwardFlow":2.4070255266787366},{"backwardFlow":1.19047980618083,"forwardFlow":2.1235942406373876},{"backwardFlow":0.8533799469203983,"forwardFlow":2.1836068977221763},{"backwardFlow":0.8533799469203983,"forwardFlow":2.1836068977221763},{"backwardFlow":2.0431910139122267,"forwardFlow":3.5330259381910283},{"backwardFlow":2.0431910139122267,"forwardFlow":2.552882721546224},{"backwardFlow":0.07593220326701426,"forwardFlow":0.0453399912438381},{"backwardFlow":0.638220680386556,"forwardFlow":1.2876486074945066},{"backwardFlow":0.638220680386556,"forwardFlow":1.188272908940098},{"backwardFlow":0.5788615137172245,"forwardFlow":2.5257650659509867},{"backwardFlow":0.5788615137172245,"forwardFlow":1.3261114489310903},{"backwardFlow":0.5788615137172245,"forwardFlow":2.5837149164177027},{"backwardFlow":0.5788615137172245,"forwardFlow":1.2683849214654965},{"backwardFlow":0.31161986666175445,"forwardFlow":0.7501593824005399},{"backwardFlow":0.31161986666175445,"forwardFlow":0.7501593824005399},{"backwardFlow":0.28397250464635393,"forwardFlow":0.8261684338703017},{"backwardFlow":0.28397250464635393,"forwardFlow":0.8261684338703017},{"backwardFlow":0.28397250464635393,"forwardFlow":0.8261684338703017},{"backwardFlow":0.28397250464635393,"forwardFlow":0.8261684338703017},{"backwardFlow":0.28397250464635393,"forwardFlow":0.3544299202677063},{"backwardFlow":0.28397250464635393,"forwardFlow":1.2382777707009582},{"backwardFlow":0.5308985601593469,"forwardFlow":1.151866722683174},{"backwardFlow":0.5308985601593469,"forwardFlow":1.2454418124217246},{"backwardFlow":0.22848974357955865,"forwardFlow":0.8218193073881626},{"backwardFlow":53.10120979086027,"forwardFlow":213.27421198072437},{"backwardFlow":0.8832564845477571,"forwardFlow":0.8107798830997714},{"backwardFlow":0.2668722154522053,"forwardFlow":1.1148786856931958},{"backwardFlow":0.32191215187362665,"forwardFlow":1.2522208563023216},{"backwardFlow":0.884190589907874,"forwardFlow":1.7665129690955141},{"backwardFlow":0.8432201719069429,"forwardFlow":1.276441360773112},{"backwardFlow":0,"forwardFlow":0.09302526306161536},{"backwardFlow":0,"forwardFlow":0.09302526306161536},{"backwardFlow":0,"forwardFlow":0.09302526306161536},{"backwardFlow":0,"forwardFlow":0.09302526306161536},{"backwardFlow":0,"forwardFlow":0.07075878340627371},{"backwardFlow":0,"forwardFlow":0.24062107953264114},{"backwardFlow":0,"forwardFlow":0.18605052612323073},{"backwardFlow":0,"forwardFlow":0.18605052612323073},{"backwardFlow":0,"forwardFlow":0.14151756681254743},{"backwardFlow":0,"forwardFlow":0.4812421590652823},{"backwardFlow":0,"forwardFlow":0.000002915036012594111},{"backwardFlow":0,"forwardFlow":0.04651263153080768},{"backwardFlow":0,"forwardFlow":0.04651263153080768},{"backwardFlow":0,"forwardFlow":0.04651263153080768},{"backwardFlow":0,"forwardFlow":0.04651263153080768},{"backwardFlow":0,"forwardFlow":0.03537939170313686},{"backwardFlow":0,"forwardFlow":0.12031053976632057},{"backwardFlow":0,"forwardFlow":0.884190589907874},{"backwardFlow":0,"forwardFlow":2.3816348007593136},{"backwardFlow":0,"forwardFlow":0.8432201719069429},{"backwardFlow":0,"forwardFlow":1.23166644969911},{"backwardFlow":0,"forwardFlow":1.2722374646747094},{"backwardFlow":0,"forwardFlow":1.2722374646747094},{"backwardFlow":0,"forwardFlow":1.2303495512411717},{"backwardFlow":0,"forwardFlow":1.2303495512411717},{"backwardFlow":0,"forwardFlow":1.5909254047775938},{"backwardFlow":0,"forwardFlow":2.552882721546224},{"backwardFlow":0,"forwardFlow":0.7501593824005399},{"backwardFlow":0,"forwardFlow":0.7501593824005399},{"backwardFlow":0,"forwardFlow":0.8261684338703017},{"backwardFlow":0,"forwardFlow":0.8261684338703017},{"backwardFlow":0,"forwardFlow":0.8261684338703017},{"backwardFlow":0,"forwardFlow":0.8261684338703017},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.8218193073881626},{"backwardFlow":0,"forwardFlow":0.8107798830997714}],"intervalEnds":[1520121600000,1520726400000,1521331200000,1521936000000,1522540800000,1523145600000,1523750400000,1524355200000,1524960000000,1525564800000,1526169600000,1526774400000,1527379200000,1527984000000,1528588800000,1529193600000,1529798400000,1530403200000,1531008000000,1531612800000,1532217600000,1532822400000,1533427200000,1534032000000,1534636800000,1535241600000,1535846400000,1536451200000,1537056000000,1537660800000,1538265600000,1538870400000,1539475200000,1540080000000,1540684800000,1541289600000,1541894400000,1542499200000,1543104000000,1543708800000,1544313600000,1544918400000,1545523200000,1546128000000,1546732800000,1547337600000,1547942400000,1548547200000,1549152000000,1549756800000,1550361600000,1550966400000,1551571200000,1552176000000,1552780800000,1553385600000,1553990400000,1554595200000,1555200000000,1555804800000,1556409600000,1557014400000,1557619200000,1558224000000,1558828800000,1559433600000,1560038400000,1560643200000,1561248000000,1561852800000,1562457600000,1563062400000,1563667200000,1564272000000,1564876800000,1565481600000,1566086400000,1566691200000,1567296000000,1567900800000,1568505600000,1569110400000,1569715200000,1570320000000,1570924800000,1571529600000,1572134400000,1572739200000,1573344000000,1573948800000],"nodeOverTime":[{"cred":[9.964412806682837,4.981955257329389,5.491477850252737,4.767272434895863,2.383691433744795,1.1919022420821395,0.5960111799878318,0.29807199372197263,0.14911279715073825,2.9893671445152354,1.5028103108200466,0.7569890996491149,0.3816004728774662,0.19214683255432766,0.09651221711467625,0.03643300088087674,0.017911108410865153,0.5039168817648663,0.2515446542905307,0.1254859311713519,0.0625929239108984,0.03125394212589924,0.015643731028961383,0.007859704971617735,0.003968586717210518,0.0020152399575003054,0.2320615233965388,0.11843317241177595,2.478916797039998,1.2554605461732404,0.6278819725342536,0.31407214713260984,0.15716084294928911,0.07870198515162928,0.03946873945127176,0.01984562823539794,0.01002289453676102,0.00509397808303507,0.0026062497971946893,0.0013382443205243108,0.0006856970230950347,0.00034909416290180347,0.0001766932756084404,0.0000893078811352669,0.00004519803089654089,0.000022866558756913162,0.000011536829406986189,0.000005028483459842613,0.0000025093967347794807,0.0000012532127947460712,6.266147941013718e-7,3.1305152891929555e-7,1.5684400448209903e-7,7.822377906804695e-8,3.940741092920162e-8,1.9473556269906007e-8,9.93073565589365e-9,1.2822068590571202e-11,3.492882385917114e-13,1.0567219292203183e-14,4.906787001961001e-16,5.174510810434059e-17,1.2665654793568439e-17,3.2487897313709546e-18,8.391015975205313e-19,2.263988148073925e-19,6.507596121482475e-20,2.0510149096657124e-20,7.246738129557673e-21,2.8708420657819932e-21,1.2471600384006662e-21,5.764971058404004e-22,2.764753350819431e-22,1.352934751818254e-22,64.20023044002419,48.10012096359943,24.050060757314842,12.02503044799422,6.012515241342323,3.0062576250127013,1.5031288135918237,0.7515644070672779,0.3757822036014297,48.18789110182217,40.093945550915414,20.046972775458535,26.02348638772945,13.011743193864772,6.505871596932399,3.0147238554938256],"seedFlow":null,"syntheticLoopFlow":null},{"cred":[3.0355871933171628,1.5180447426706114,0.758522149747263,0.35772756510413695,0.17880856625520503,0.08934775791786041,0.04461382001216829,0.02224050627802738,0.011043452849261753,0.5907109804847651,0.2872287516799533,0.1380304316008853,0.06590929274753382,0.03160805025817233,0.01536522429157375,0.5195057198222482,0.2600582519406973,0.6350677984109149,0.31794768579736005,0.1592602388725934,0.07978016111107428,0.039932600385087086,0.01994954022653178,0.009936930656128846,0.004929731096662773,0.0024339189494363396,0.27016305605692953,0.13267911731495818,3.6466393478233696,1.807317526258443,0.9035070636815883,0.45162237097531105,0.22568641610467133,0.11272164437535097,0.05624307531221834,0.028010279146347117,0.013905059154111506,0.006869998762401194,0.003375738625523442,0.0016527498908347552,0.0008098000825844982,0.00039865438993796296,0.00019718100081144284,0.00009762925707467471,0.00004827053820842992,0.000023867725795572247,0.000011830312869256514,0.000006655087678278739,0.000003332388834281196,0.0000016676799897842666,8.338315981637971e-7,4.171716672132889e-7,2.0826759358419323e-7,1.0433201996509918e-7,5.1870488587371434e-8,2.6165393488380526e-8,1.2888739223249615e-8,8.04939141574632e-11,2.718043565816994e-12,8.889367764770289e-14,3.019908744017573e-15,7.305520639252102e-17,1.2973598613354522e-17,3.2692980381726054e-18,8.413450567275936e-19,2.2669043095415683e-19,6.511746026108073e-20,2.0516672368007957e-20,7.247889948247781e-21,2.8710702747011715e-21,1.247209601611556e-21,5.765085626262077e-22,2.764780835722178e-22,1.3529414788138387e-22,3.85511898683884e-24,3.017795706654427e-25,7.555328736624607e-26,1.8895398626051377e-26,4.734319266443446e-27,1.1886222148733845e-27,2.998070358183104e-28,7.629744669882044e-29,1.9763479413455937e-29,4.4130708931334205e-30,9.640123293127576e-31,2.2223385880849707e-31,6.074903007805852e-32,1.4064626051023546e-32,3.3619358671189635e-33,7.648468376569111e-34],"seedFlow":null,"syntheticLoopFlow":null},{"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864.2382119429724],"seedFlow":null,"syntheticLoopFlow":null},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.00000001131642,16.000000005701803,8.000000002852337,4.000000001426214,2.0000000007131082,1.0000000003565543,0.5000000001782772,0.2500000000891386,0.1250000000445693,0.06250000002228465,0.03125000001114232,0.01562500000557116,0.00781250000278558,0.00390625000139279,0.001953125000696395,0.0009765625003481976,0.0004882812501740988,0.00001370060090190342,0.000001106713109888182,2.7784142671461363e-7,6.958391522249454e-8,1.74467450431116e-8,4.381832913685175e-9,1.105443407781644e-9,2.813556353587502e-10,7.288699424407906e-11,1.4993848361602337e-11,3.1561313830549412e-12,7.533173205082422e-13,1.983060388343377e-13,4.8309400257697203e-14,1.193000809203665e-14,2.7632560124633197e-15],"seedFlow":null,"syntheticLoopFlow":null},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"nodeSummaries":[{"cred":359.0537402900019,"seedFlow":0,"syntheticLoopFlow":23.164608447273967},{"cred":16.855585049039963,"seedFlow":0,"syntheticLoopFlow":0.06105709263522425},{"cred":864.2382119429724,"seedFlow":0,"syntheticLoopFlow":216.0595529857431},{"cred":60.56552732568803,"seedFlow":2.15174875313823,"syntheticLoopFlow":2.294937851404855},{"cred":105.54139568166305,"seedFlow":105.34087745055233,"syntheticLoopFlow":0.20048092583927374},{"cred":105.54139568166305,"seedFlow":105.34087745055233,"syntheticLoopFlow":0.20048092583927374},{"cred":212.47703785103522,"seedFlow":172.1399002510584,"syntheticLoopFlow":0.5255222243463762},{"cred":172.28502818609124,"seedFlow":172.1399002510584,"syntheticLoopFlow":0.14512790478671705},{"cred":185.5031336226956,"seedFlow":172.1399002510584,"syntheticLoopFlow":0.15519353772074734},{"cred":172.28502818609124,"seedFlow":172.1399002510584,"syntheticLoopFlow":0.14512790478671705},{"cred":188.92780252629902,"seedFlow":172.184732085274,"syntheticLoopFlow":2.5213586193317643},{"cred":131.06426732786494,"seedFlow":130.96757573459266,"syntheticLoopFlow":0.09669159327230227},{"cred":141.13057610477608,"seedFlow":130.96757573459266,"syntheticLoopFlow":0.10407211907505472},{"cred":131.03474522465396,"seedFlow":130.96757573459266,"syntheticLoopFlow":0.06716949006129246},{"cred":124.06282900265565,"seedFlow":123.98091986132852,"syntheticLoopFlow":0.0819091413271274},{"cred":118.25798309141999,"seedFlow":118.22521508311533,"syntheticLoopFlow":0.03276800830465061},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":145.47148786394635,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.03229828771402006},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.31906253431587,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.008812893993591002},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":57.32297676660261,"seedFlow":57.31024964032228,"syntheticLoopFlow":0.012727126280329178},{"cred":2.9133947120642842,"seedFlow":0,"syntheticLoopFlow":0.00396571745036982},{"cred":12.60870216466368,"seedFlow":0,"syntheticLoopFlow":0.023665526989877728},{"cred":6.865644933640328,"seedFlow":0,"syntheticLoopFlow":0.008204787311407783},{"cred":3.632914809263145,"seedFlow":0,"syntheticLoopFlow":0.0029842271860408775},{"cred":6.428747271610066,"seedFlow":0,"syntheticLoopFlow":0.0052849969308700765},{"cred":11.330964882396573,"seedFlow":0,"syntheticLoopFlow":0.018748799701281568},{"cred":1.969803070189684,"seedFlow":0,"syntheticLoopFlow":0.0010212192196608048},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":26.07603344409517,"seedFlow":0,"syntheticLoopFlow":0.006512495865158636},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":1.5912882096689365,"seedFlow":0,"syntheticLoopFlow":0.0003974246277894448},{"cred":2.9133947120642842,"seedFlow":0,"syntheticLoopFlow":0.00396571745036982},{"cred":63.999526919519596,"seedFlow":0,"syntheticLoopFlow":15.999881729879899},{"cred":10.19730872865204,"seedFlow":9.594884446299973,"syntheticLoopFlow":0.023562116212024493},{"cred":10.675782038381957,"seedFlow":9.594884446299973,"syntheticLoopFlow":0.016722611733307306},{"cred":10.43012639296173,"seedFlow":9.594884446299973,"syntheticLoopFlow":0.023816681822730144},{"cred":10.213644104117416,"seedFlow":9.594884446299973,"syntheticLoopFlow":0.016641183098359887},{"cred":9.0217540651876,"seedFlow":8.316894575689037,"syntheticLoopFlow":0.004960369095280274},{"cred":9.0217540651876,"seedFlow":8.316894575689037,"syntheticLoopFlow":0.004960369095280274},{"cred":9.954568368024946,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.010136790395330636},{"cred":9.954568368024946,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.010136790395330636},{"cred":9.954568368024946,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.010136790395330636},{"cred":9.954568368024946,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.010136790395330636},{"cred":9.951229140875329,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.006797843344887712},{"cred":9.95716813624192,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.012736492658563418},{"cred":9.243118350863002,"seedFlow":8.316894575689037,"syntheticLoopFlow":0.00704614234940153},{"cred":9.99379673788416,"seedFlow":8.316894575689037,"syntheticLoopFlow":0.007565559627589248},{"cred":9.897985958302884,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.009038567411233687},{"cred":1707.3744182143303,"seedFlow":1600.7686868508324,"syntheticLoopFlow":0.29518059213363923},{"cred":9.751142851162692,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.005446063491358324},{"cred":9.565668073183737,"seedFlow":8.779906655151377,"syntheticLoopFlow":0.16165964690954104},{"cred":11.973573712904034,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.4889517156213661},{"cred":10.635175252028025,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.006222043283384551},{"cred":9.617666890579985,"seedFlow":9.594884446299973,"syntheticLoopFlow":0.02278192188568319},{"cred":10.145628531792658,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.006746617227338519},{"cred":9.918862832132424,"seedFlow":9.594884446299973,"syntheticLoopFlow":0.01638280863488619},{"cred":10.515007261295507,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.4222183637544035},{"cred":10.515007261295507,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.4222183637544035},{"cred":21.41663916502094,"seedFlow":16.783616469233184,"syntheticLoopFlow":0.08081896810207222},{"cred":26.287389697368248,"seedFlow":23.96871072458402,"syntheticLoopFlow":0.21066010096851448},{"cred":27.910940084677986,"seedFlow":19.189768892599947,"syntheticLoopFlow":0.031396856562801646},{"cred":19.78483291125612,"seedFlow":19.189768892599947,"syntheticLoopFlow":0.02481002284934417},{"cred":20.072018031389874,"seedFlow":19.189768892599947,"syntheticLoopFlow":0.0329164926771869},{"cred":29.139575718276994,"seedFlow":16.783616469233184,"syntheticLoopFlow":0.18504295403483498},{"cred":19.311186841648905,"seedFlow":16.783616469233184,"syntheticLoopFlow":0.013745657054751677},{"cred":235.7563415116915,"seedFlow":16.633789151378075,"syntheticLoopFlow":0.3004002418895929},{"cred":17.523850406531633,"seedFlow":16.246162106203176,"syntheticLoopFlow":0.013748806188554487},{"cred":17.523850406531633,"seedFlow":16.246162106203176,"syntheticLoopFlow":0.013748806188554487},{"cred":39.06509799371249,"seedFlow":33.56723293846637,"syntheticLoopFlow":0.0504531684027936},{"cred":42.27477190468236,"seedFlow":33.56723293846637,"syntheticLoopFlow":0.09028987453349271},{"cred":0.730793038531842,"seedFlow":0,"syntheticLoopFlow":0.04667828590144626},{"cred":60.23833078157025,"seedFlow":33.56723293846637,"syntheticLoopFlow":0.10382883055582441},{"cred":12.088152025261927,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.12482863945284257},{"cred":9.538610946693161,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.008106918793094517},{"cred":214.65173419974133,"seedFlow":0,"syntheticLoopFlow":0.14595960031173968}]},"params":{"alpha":0.75,"intervalDecay":0.5},"plugins":[{"type":"sourcecred/pluginDeclarations","version":"0.1.0"},[{"edgePrefix":"E\u0000sourcecred\u0000discourse\u0000","edgeTypes":[{"backwardName":"post replied to by","defaultWeight":{"backwards":0,"forwards":0.5},"description":"Connects a post to the post that it is a reply to.","forwardName":"post is reply to","prefix":"E\u0000sourcecred\u0000discourse\u0000replyTo\u0000"},{"backwardName":"topic is authored by","defaultWeight":{"backwards":1,"forwards":0},"description":"Connects an author to a topic they created.","forwardName":"authors topic","prefix":"E\u0000sourcecred\u0000discourse\u0000authors\u0000topic\u0000"},{"backwardName":"post is authored by","defaultWeight":{"backwards":1,"forwards":0},"description":"Connects an author to a post they've created.","forwardName":"authors post","prefix":"E\u0000sourcecred\u0000discourse\u0000authors\u0000post\u0000"},{"backwardName":"is contained by topic","defaultWeight":{"backwards":0.125,"forwards":0},"description":"Connects a topic to the posts that it contains.","forwardName":"contains post","prefix":"E\u0000sourcecred\u0000discourse\u0000topicContainsPost\u0000"},{"backwardName":"is liked by","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects a Discourse like to a post that was liked.","forwardName":"likes","prefix":"E\u0000sourcecred\u0000discourse\u0000likes\u0000"},{"backwardName":"like created by","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects a Discourse user to a like that they created.","forwardName":"creates like","prefix":"E\u0000sourcecred\u0000discourse\u0000createsLike\u0000"},{"backwardName":"post is referenced by","defaultWeight":{"backwards":0,"forwards":0.5},"description":"Connects a Discourse post to another post it referenced.","forwardName":"references post","prefix":"E\u0000sourcecred\u0000discourse\u0000references\u0000post\u0000"},{"backwardName":"topic is referenced by","defaultWeight":{"backwards":0,"forwards":0.5},"description":"Connects a Discourse post to a topic it referenced.","forwardName":"references topic","prefix":"E\u0000sourcecred\u0000discourse\u0000references\u0000topic\u0000"},{"backwardName":"is mentioned by","defaultWeight":{"backwards":0,"forwards":0.25},"description":"Connects a Discourse post to a user it mentions","forwardName":"mentions","prefix":"E\u0000sourcecred\u0000discourse\u0000references\u0000user\u0000"}],"name":"Discourse","nodePrefix":"N\u0000sourcecred\u0000discourse\u0000","nodeTypes":[{"defaultWeight":0,"description":"A user account on a particular Discourse instance.","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000discourse\u0000user\u0000"},{"defaultWeight":0,"description":"A topic (or post-container) in a Discourse instance. Every topic has at least one post.","name":"Topic","pluralName":"Topics","prefix":"N\u0000sourcecred\u0000discourse\u0000topic\u0000"},{"defaultWeight":0,"description":"A post in some topic in a Discourse instance.","name":"Post","pluralName":"Posts","prefix":"N\u0000sourcecred\u0000discourse\u0000post\u0000"},{"defaultWeight":4,"description":"A like by some user, directed at some post","name":"Like","pluralName":"Likes","prefix":"N\u0000sourcecred\u0000discourse\u0000like\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A user account on a particular Discourse instance.","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000discourse\u0000user\u0000"}]},{"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":0,"description":"NodeType for a GitHub repository","name":"Repository","pluralName":"Repositories","prefix":"N\u0000sourcecred\u0000github\u0000REPO\u0000"},{"defaultWeight":0,"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":0,"description":"NodeType for a GitHub comment","name":"Comment","pluralName":"Comments","prefix":"N\u0000sourcecred\u0000github\u0000COMMENT\u0000"},{"defaultWeight":0,"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\u0000core\u0000IDENTITY\u0000","edgeTypes":[],"name":"Identity","nodePrefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000","nodeTypes":[{"defaultWeight":0,"description":"a canonical user identity","name":"user","pluralName":"users","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000"},{"defaultWeight":0,"description":"a canonical project identity","name":"project","pluralName":"projects","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000PROJECT\u0000"},{"defaultWeight":0,"description":"a canonical organization identity","name":"organization","pluralName":"organizations","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000ORGANIZATION\u0000"},{"defaultWeight":0,"description":"a canonical bot identity","name":"bot","pluralName":"bots","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000BOT\u0000"}],"userTypes":[{"defaultWeight":0,"description":"a canonical user identity","name":"user","pluralName":"users","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000"},{"defaultWeight":0,"description":"a canonical project identity","name":"project","pluralName":"projects","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000PROJECT\u0000"},{"defaultWeight":0,"description":"a canonical organization identity","name":"organization","pluralName":"organizations","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000ORGANIZATION\u0000"},{"defaultWeight":0,"description":"a canonical bot identity","name":"bot","pluralName":"bots","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000BOT\u0000"}]}]],"weightedGraph":[{"type":"sourcecred/weightedGraph","version":"0.1.0"},{"graphJSON":[{"type":"sourcecred/graph","version":"0.8.0"},{"edges":[{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","32"],"dstIndex":16,"srcIndex":2,"timestampMs":1573839531354},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","33"],"dstIndex":17,"srcIndex":2,"timestampMs":1573839624599},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","34"],"dstIndex":18,"srcIndex":2,"timestampMs":1573839733554},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","35"],"dstIndex":19,"srcIndex":2,"timestampMs":1573839810871},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","36"],"dstIndex":20,"srcIndex":2,"timestampMs":1573839814701},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","37"],"dstIndex":21,"srcIndex":2,"timestampMs":1573839818330},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","38"],"dstIndex":22,"srcIndex":2,"timestampMs":1573839821821},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","39"],"dstIndex":23,"srcIndex":2,"timestampMs":1573839825601},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","40"],"dstIndex":24,"srcIndex":2,"timestampMs":1573839828825},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","41"],"dstIndex":25,"srcIndex":2,"timestampMs":1573839832023},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","42"],"dstIndex":26,"srcIndex":2,"timestampMs":1573839835298},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","43"],"dstIndex":27,"srcIndex":2,"timestampMs":1573839840261},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","44"],"dstIndex":28,"srcIndex":2,"timestampMs":1573839843418},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","45"],"dstIndex":29,"srcIndex":2,"timestampMs":1573839846537},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","46"],"dstIndex":30,"srcIndex":2,"timestampMs":1573839849459},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","47"],"dstIndex":31,"srcIndex":2,"timestampMs":1573839852186},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","48"],"dstIndex":32,"srcIndex":2,"timestampMs":1573839855068},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","49"],"dstIndex":33,"srcIndex":2,"timestampMs":1573839857787},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","50"],"dstIndex":34,"srcIndex":2,"timestampMs":1573839860730},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","51"],"dstIndex":35,"srcIndex":2,"timestampMs":1573839863576},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","52"],"dstIndex":36,"srcIndex":2,"timestampMs":1573839866548},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","53"],"dstIndex":37,"srcIndex":2,"timestampMs":1573839869555},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","54"],"dstIndex":38,"srcIndex":2,"timestampMs":1573839872244},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","55"],"dstIndex":39,"srcIndex":2,"timestampMs":1573840159198},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","56"],"dstIndex":40,"srcIndex":2,"timestampMs":1573840233231},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","57"],"dstIndex":41,"srcIndex":2,"timestampMs":1573840310550},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","58"],"dstIndex":42,"srcIndex":2,"timestampMs":1573840335123},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","59"],"dstIndex":43,"srcIndex":2,"timestampMs":1573840348410},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","60"],"dstIndex":44,"srcIndex":2,"timestampMs":1573840354669},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","61"],"dstIndex":45,"srcIndex":2,"timestampMs":1573840360335},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","62"],"dstIndex":46,"srcIndex":2,"timestampMs":1573840366708},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","63"],"dstIndex":47,"srcIndex":2,"timestampMs":1573840372677},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","64"],"dstIndex":48,"srcIndex":2,"timestampMs":1573840428729},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","65"],"dstIndex":49,"srcIndex":2,"timestampMs":1573840450294},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","66"],"dstIndex":50,"srcIndex":2,"timestampMs":1573840464212},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","67"],"dstIndex":51,"srcIndex":2,"timestampMs":1573840469806},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","68"],"dstIndex":52,"srcIndex":2,"timestampMs":1573840474450},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","69"],"dstIndex":53,"srcIndex":2,"timestampMs":1573840480604},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","70"],"dstIndex":54,"srcIndex":2,"timestampMs":1573840486299},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","71"],"dstIndex":55,"srcIndex":2,"timestampMs":1573840496395},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","72"],"dstIndex":56,"srcIndex":2,"timestampMs":1573840503032},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","73"],"dstIndex":57,"srcIndex":2,"timestampMs":1573840509355},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","74"],"dstIndex":58,"srcIndex":2,"timestampMs":1573840516283},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","75"],"dstIndex":59,"srcIndex":2,"timestampMs":1573840525734},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","76"],"dstIndex":60,"srcIndex":2,"timestampMs":1573840532029},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","77"],"dstIndex":61,"srcIndex":2,"timestampMs":1573840538301},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","78"],"dstIndex":62,"srcIndex":2,"timestampMs":1573840544868},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","79"],"dstIndex":63,"srcIndex":2,"timestampMs":1573840551728},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","80"],"dstIndex":64,"srcIndex":2,"timestampMs":1573840562068},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","81"],"dstIndex":65,"srcIndex":2,"timestampMs":1573840567788},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","82"],"dstIndex":66,"srcIndex":2,"timestampMs":1573840574181},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","83"],"dstIndex":67,"srcIndex":2,"timestampMs":1573840580352},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","84"],"dstIndex":68,"srcIndex":2,"timestampMs":1573840590166},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","85"],"dstIndex":69,"srcIndex":2,"timestampMs":1573840598964},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","14"],"dstIndex":6,"srcIndex":0,"timestampMs":1564744349476},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","18"],"dstIndex":9,"srcIndex":0,"timestampMs":1564744591313},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","22"],"dstIndex":10,"srcIndex":0,"timestampMs":1564951839667},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","25"],"dstIndex":11,"srcIndex":0,"timestampMs":1570049410625},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","26"],"dstIndex":12,"srcIndex":0,"timestampMs":1570049491743},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","27"],"dstIndex":13,"srcIndex":0,"timestampMs":1570049836311},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","28"],"dstIndex":14,"srcIndex":0,"timestampMs":1570420159922},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","29"],"dstIndex":15,"srcIndex":0,"timestampMs":1571855191281},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","dl-proto","16"],"dstIndex":7,"srcIndex":0,"timestampMs":1564744496285},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","dl-proto","17"],"dstIndex":8,"srcIndex":0,"timestampMs":1564744553905},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","system","1"],"dstIndex":4,"srcIndex":112,"timestampMs":1554236409844},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","system","10"],"dstIndex":5,"srcIndex":112,"timestampMs":1554236412933},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","24"],"dstIndex":77,"srcIndex":2,"timestampMs":1573839531345},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","25"],"dstIndex":78,"srcIndex":2,"timestampMs":1573839624590},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","26"],"dstIndex":79,"srcIndex":2,"timestampMs":1573839733506},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","27"],"dstIndex":80,"srcIndex":2,"timestampMs":1573840159140},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","28"],"dstIndex":81,"srcIndex":2,"timestampMs":1573840233177},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","29"],"dstIndex":82,"srcIndex":2,"timestampMs":1573840310488},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","30"],"dstIndex":83,"srcIndex":2,"timestampMs":1573840335060},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","31"],"dstIndex":84,"srcIndex":2,"timestampMs":1573840348348},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","32"],"dstIndex":85,"srcIndex":2,"timestampMs":1573840354599},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","33"],"dstIndex":86,"srcIndex":2,"timestampMs":1573840360253},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","34"],"dstIndex":87,"srcIndex":2,"timestampMs":1573840366625},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","35"],"dstIndex":88,"srcIndex":2,"timestampMs":1573840372613},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","36"],"dstIndex":89,"srcIndex":2,"timestampMs":1573840428677},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","37"],"dstIndex":90,"srcIndex":2,"timestampMs":1573840450242},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","38"],"dstIndex":91,"srcIndex":2,"timestampMs":1573840464152},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","39"],"dstIndex":92,"srcIndex":2,"timestampMs":1573840469748},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","40"],"dstIndex":93,"srcIndex":2,"timestampMs":1573840474386},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","41"],"dstIndex":94,"srcIndex":2,"timestampMs":1573840480538},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","42"],"dstIndex":95,"srcIndex":2,"timestampMs":1573840486242},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","43"],"dstIndex":96,"srcIndex":2,"timestampMs":1573840496337},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","44"],"dstIndex":97,"srcIndex":2,"timestampMs":1573840502978},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","45"],"dstIndex":98,"srcIndex":2,"timestampMs":1573840509297},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","46"],"dstIndex":99,"srcIndex":2,"timestampMs":1573840516235},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","47"],"dstIndex":100,"srcIndex":2,"timestampMs":1573840525656},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","48"],"dstIndex":101,"srcIndex":2,"timestampMs":1573840531935},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","49"],"dstIndex":102,"srcIndex":2,"timestampMs":1573840538246},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","50"],"dstIndex":103,"srcIndex":2,"timestampMs":1573840544797},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","51"],"dstIndex":104,"srcIndex":2,"timestampMs":1573840551656},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","52"],"dstIndex":105,"srcIndex":2,"timestampMs":1573840562010},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","53"],"dstIndex":106,"srcIndex":2,"timestampMs":1573840567727},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","54"],"dstIndex":107,"srcIndex":2,"timestampMs":1573840574124},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","55"],"dstIndex":108,"srcIndex":2,"timestampMs":1573840580295},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","56"],"dstIndex":109,"srcIndex":2,"timestampMs":1573840590101},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","57"],"dstIndex":110,"srcIndex":2,"timestampMs":1573840598902},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","11"],"dstIndex":71,"srcIndex":0,"timestampMs":1564744349408},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","18"],"dstIndex":73,"srcIndex":0,"timestampMs":1570049410568},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","19"],"dstIndex":74,"srcIndex":0,"timestampMs":1570049491690},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","20"],"dstIndex":75,"srcIndex":0,"timestampMs":1570420159868},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","21"],"dstIndex":76,"srcIndex":0,"timestampMs":1571855191140},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","dl-proto","13"],"dstIndex":72,"srcIndex":0,"timestampMs":1564744553843},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","system","1"],"dstIndex":70,"srcIndex":112,"timestampMs":1554236409674},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","system","7"],"dstIndex":111,"srcIndex":112,"timestampMs":1554236412879},{"address":["sourcecred","discourse","createsLike","https://sourcecred-test.discourse.group","dl-proto","14"],"dstIndex":3,"srcIndex":0,"timestampMs":1564744498189},{"address":["sourcecred","discourse","likes","https://sourcecred-test.discourse.group","dl-proto","14"],"dstIndex":6,"srcIndex":3,"timestampMs":1564744498189},{"address":["sourcecred","discourse","references","post","https://sourcecred-test.discourse.group","17","22"],"dstIndex":10,"srcIndex":8,"timestampMs":1564744553905},{"address":["sourcecred","discourse","references","topic","https://sourcecred-test.discourse.group","29","20"],"dstIndex":75,"srcIndex":15,"timestampMs":1571855191281},{"address":["sourcecred","discourse","references","user","https://sourcecred-test.discourse.group","29","dl-proto"],"dstIndex":0,"srcIndex":15,"timestampMs":1571855191281},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","16","14"],"dstIndex":6,"srcIndex":7,"timestampMs":1564744496285},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","18","17"],"dstIndex":8,"srcIndex":9,"timestampMs":1564744591313},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","22","14"],"dstIndex":6,"srcIndex":10,"timestampMs":1564951839667},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","27","26"],"dstIndex":12,"srcIndex":13,"timestampMs":1570049836311},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","35","34"],"dstIndex":18,"srcIndex":19,"timestampMs":1573839810871},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","36","34"],"dstIndex":18,"srcIndex":20,"timestampMs":1573839814701},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","37","34"],"dstIndex":18,"srcIndex":21,"timestampMs":1573839818330},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","38","34"],"dstIndex":18,"srcIndex":22,"timestampMs":1573839821821},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","39","34"],"dstIndex":18,"srcIndex":23,"timestampMs":1573839825601},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","40","34"],"dstIndex":18,"srcIndex":24,"timestampMs":1573839828825},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","41","34"],"dstIndex":18,"srcIndex":25,"timestampMs":1573839832023},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","42","34"],"dstIndex":18,"srcIndex":26,"timestampMs":1573839835298},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","43","34"],"dstIndex":18,"srcIndex":27,"timestampMs":1573839840261},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","44","34"],"dstIndex":18,"srcIndex":28,"timestampMs":1573839843418},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","45","34"],"dstIndex":18,"srcIndex":29,"timestampMs":1573839846537},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","46","34"],"dstIndex":18,"srcIndex":30,"timestampMs":1573839849459},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","47","34"],"dstIndex":18,"srcIndex":31,"timestampMs":1573839852186},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","48","34"],"dstIndex":18,"srcIndex":32,"timestampMs":1573839855068},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","49","34"],"dstIndex":18,"srcIndex":33,"timestampMs":1573839857787},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","50","34"],"dstIndex":18,"srcIndex":34,"timestampMs":1573839860730},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","51","34"],"dstIndex":18,"srcIndex":35,"timestampMs":1573839863576},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","52","34"],"dstIndex":18,"srcIndex":36,"timestampMs":1573839866548},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","53","34"],"dstIndex":18,"srcIndex":37,"timestampMs":1573839869555},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","54","34"],"dstIndex":18,"srcIndex":38,"timestampMs":1573839872244},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","1","1"],"dstIndex":4,"srcIndex":70,"timestampMs":1554236409844},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","11","14"],"dstIndex":6,"srcIndex":71,"timestampMs":1564744349476},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","11","16"],"dstIndex":7,"srcIndex":71,"timestampMs":1564744496285},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","11","22"],"dstIndex":10,"srcIndex":71,"timestampMs":1564951839667},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","13","17"],"dstIndex":8,"srcIndex":72,"timestampMs":1564744553905},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","13","18"],"dstIndex":9,"srcIndex":72,"timestampMs":1564744591313},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","18","25"],"dstIndex":11,"srcIndex":73,"timestampMs":1570049410625},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","19","26"],"dstIndex":12,"srcIndex":74,"timestampMs":1570049491743},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","19","27"],"dstIndex":13,"srcIndex":74,"timestampMs":1570049836311},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","20","28"],"dstIndex":14,"srcIndex":75,"timestampMs":1570420159922},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","21","29"],"dstIndex":15,"srcIndex":76,"timestampMs":1571855191281},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","24","32"],"dstIndex":16,"srcIndex":77,"timestampMs":1573839531354},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","25","33"],"dstIndex":17,"srcIndex":78,"timestampMs":1573839624599},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","34"],"dstIndex":18,"srcIndex":79,"timestampMs":1573839733554},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","35"],"dstIndex":19,"srcIndex":79,"timestampMs":1573839810871},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","36"],"dstIndex":20,"srcIndex":79,"timestampMs":1573839814701},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","37"],"dstIndex":21,"srcIndex":79,"timestampMs":1573839818330},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","38"],"dstIndex":22,"srcIndex":79,"timestampMs":1573839821821},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","39"],"dstIndex":23,"srcIndex":79,"timestampMs":1573839825601},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","40"],"dstIndex":24,"srcIndex":79,"timestampMs":1573839828825},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","41"],"dstIndex":25,"srcIndex":79,"timestampMs":1573839832023},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","42"],"dstIndex":26,"srcIndex":79,"timestampMs":1573839835298},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","43"],"dstIndex":27,"srcIndex":79,"timestampMs":1573839840261},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","44"],"dstIndex":28,"srcIndex":79,"timestampMs":1573839843418},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","45"],"dstIndex":29,"srcIndex":79,"timestampMs":1573839846537},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","46"],"dstIndex":30,"srcIndex":79,"timestampMs":1573839849459},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","47"],"dstIndex":31,"srcIndex":79,"timestampMs":1573839852186},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","48"],"dstIndex":32,"srcIndex":79,"timestampMs":1573839855068},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","49"],"dstIndex":33,"srcIndex":79,"timestampMs":1573839857787},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","50"],"dstIndex":34,"srcIndex":79,"timestampMs":1573839860730},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","51"],"dstIndex":35,"srcIndex":79,"timestampMs":1573839863576},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","52"],"dstIndex":36,"srcIndex":79,"timestampMs":1573839866548},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","53"],"dstIndex":37,"srcIndex":79,"timestampMs":1573839869555},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","54"],"dstIndex":38,"srcIndex":79,"timestampMs":1573839872244},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","27","55"],"dstIndex":39,"srcIndex":80,"timestampMs":1573840159198},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","28","56"],"dstIndex":40,"srcIndex":81,"timestampMs":1573840233231},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","29","57"],"dstIndex":41,"srcIndex":82,"timestampMs":1573840310550},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","30","58"],"dstIndex":42,"srcIndex":83,"timestampMs":1573840335123},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","31","59"],"dstIndex":43,"srcIndex":84,"timestampMs":1573840348410},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","32","60"],"dstIndex":44,"srcIndex":85,"timestampMs":1573840354669},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","33","61"],"dstIndex":45,"srcIndex":86,"timestampMs":1573840360335},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","34","62"],"dstIndex":46,"srcIndex":87,"timestampMs":1573840366708},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","35","63"],"dstIndex":47,"srcIndex":88,"timestampMs":1573840372677},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","36","64"],"dstIndex":48,"srcIndex":89,"timestampMs":1573840428729},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","37","65"],"dstIndex":49,"srcIndex":90,"timestampMs":1573840450294},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","38","66"],"dstIndex":50,"srcIndex":91,"timestampMs":1573840464212},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","39","67"],"dstIndex":51,"srcIndex":92,"timestampMs":1573840469806},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","40","68"],"dstIndex":52,"srcIndex":93,"timestampMs":1573840474450},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","41","69"],"dstIndex":53,"srcIndex":94,"timestampMs":1573840480604},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","42","70"],"dstIndex":54,"srcIndex":95,"timestampMs":1573840486299},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","43","71"],"dstIndex":55,"srcIndex":96,"timestampMs":1573840496395},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","44","72"],"dstIndex":56,"srcIndex":97,"timestampMs":1573840503032},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","45","73"],"dstIndex":57,"srcIndex":98,"timestampMs":1573840509355},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","46","74"],"dstIndex":58,"srcIndex":99,"timestampMs":1573840516283},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","47","75"],"dstIndex":59,"srcIndex":100,"timestampMs":1573840525734},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","48","76"],"dstIndex":60,"srcIndex":101,"timestampMs":1573840532029},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","49","77"],"dstIndex":61,"srcIndex":102,"timestampMs":1573840538301},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","50","78"],"dstIndex":62,"srcIndex":103,"timestampMs":1573840544868},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","51","79"],"dstIndex":63,"srcIndex":104,"timestampMs":1573840551728},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","52","80"],"dstIndex":64,"srcIndex":105,"timestampMs":1573840562068},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","53","81"],"dstIndex":65,"srcIndex":106,"timestampMs":1573840567788},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","54","82"],"dstIndex":66,"srcIndex":107,"timestampMs":1573840574181},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","55","83"],"dstIndex":67,"srcIndex":108,"timestampMs":1573840580352},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","56","84"],"dstIndex":68,"srcIndex":109,"timestampMs":1573840590166},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","57","85"],"dstIndex":69,"srcIndex":110,"timestampMs":1573840598964},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","7","10"],"dstIndex":5,"srcIndex":111,"timestampMs":1554236412933},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","BOT","credbot","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmM0MzBiZDc0NDU1MTA1Zjc3MjE1ZWNlNTE5NDUwOTRjZWVlZTZjODY="],"dstIndex":141,"srcIndex":160,"timestampMs":1536788634000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","BOT","credbot","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","417104047"],"dstIndex":134,"srcIndex":160,"timestampMs":1535576390000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjBhMjIzMzQ2YjRlNmRlYzAxMjdiMWU2YWE4OTJjNGVlMDQyNGI2NmE="],"dstIndex":138,"srcIndex":0,"timestampMs":1519807427000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZkNWIzYWEzMWViYjY4YTA2Y2ViNDZiYmQ2Y2Y0OWI2Y2NkNmY1ZTY="],"dstIndex":140,"srcIndex":0,"timestampMs":1519878354000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjOTFhZGI3MThhNjA0NWI0OTIzMDNmMDBkOGU4YmViOTU3ZGM3ODA="],"dstIndex":142,"srcIndex":0,"timestampMs":1519807271000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjYzg4OWRjOTRjZjZkYTE3YWU2ZWFiNWJiN2I3MTU1ZjU3NzUxOWQ="],"dstIndex":143,"srcIndex":0,"timestampMs":1519807329000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":144,"srcIndex":0,"timestampMs":1519807088000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10"],"dstIndex":145,"srcIndex":0,"timestampMs":1530297021000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12"],"dstIndex":147,"srcIndex":0,"timestampMs":1536878086000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":148,"srcIndex":0,"timestampMs":1536878137000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":149,"srcIndex":0,"timestampMs":1519807129000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","4"],"dstIndex":150,"srcIndex":0,"timestampMs":1519807454000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","6"],"dstIndex":151,"srcIndex":0,"timestampMs":1521217624000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","7"],"dstIndex":152,"srcIndex":0,"timestampMs":1521569949000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","8"],"dstIndex":153,"srcIndex":0,"timestampMs":1521570243000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":154,"srcIndex":0,"timestampMs":1519807399000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":155,"srcIndex":0,"timestampMs":1519807636000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":156,"srcIndex":0,"timestampMs":1525373595000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813621"],"dstIndex":122,"srcIndex":0,"timestampMs":1536789965000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768703"],"dstIndex":123,"srcIndex":0,"timestampMs":1521217693000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768850"],"dstIndex":124,"srcIndex":0,"timestampMs":1521217725000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576185"],"dstIndex":125,"srcIndex":0,"timestampMs":1525137909000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576220"],"dstIndex":126,"srcIndex":0,"timestampMs":1525137925000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576248"],"dstIndex":127,"srcIndex":0,"timestampMs":1525137939000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576273"],"dstIndex":128,"srcIndex":0,"timestampMs":1525137951000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920"],"dstIndex":129,"srcIndex":0,"timestampMs":1525138231000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576936"],"dstIndex":130,"srcIndex":0,"timestampMs":1525138238000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768442"],"dstIndex":131,"srcIndex":0,"timestampMs":1521217642000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768538"],"dstIndex":132,"srcIndex":0,"timestampMs":1521217661000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","385223316"],"dstIndex":133,"srcIndex":0,"timestampMs":1524973307000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","3","369162222"],"dstIndex":135,"srcIndex":0,"timestampMs":1519807420000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10"],"dstIndex":145,"srcIndex":1,"timestampMs":1530297021000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","6","sourcecred","github","ISSUE","sourcecred-test","example-github","11"],"dstIndex":146,"srcIndex":1,"timestampMs":1536789479000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":156,"srcIndex":1,"timestampMs":1525373595000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],"dstIndex":158,"srcIndex":1,"timestampMs":1519878210000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100314038"],"dstIndex":159,"srcIndex":1,"timestampMs":1519878296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813013"],"dstIndex":120,"srcIndex":1,"timestampMs":1536789813000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","5","396430464"],"dstIndex":136,"srcIndex":1,"timestampMs":1528764380000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":137,"srcIndex":1,"timestampMs":1519878210000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjBhMjIzMzQ2YjRlNmRlYzAxMjdiMWU2YWE4OTJjNGVlMDQyNGI2NmE="],"dstIndex":113,"srcIndex":138,"timestampMs":1519807427000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZiZDFiNGMwYjcxOWMyMmM2ODhhNzQ4NjNiZTA3YTY5OWI3YjliMzQ="],"dstIndex":114,"srcIndex":139,"timestampMs":1536806901000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZkNWIzYWEzMWViYjY4YTA2Y2ViNDZiYmQ2Y2Y0OWI2Y2NkNmY1ZTY="],"dstIndex":115,"srcIndex":140,"timestampMs":1519878354000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmM0MzBiZDc0NDU1MTA1Zjc3MjE1ZWNlNTE5NDUwOTRjZWVlZTZjODY="],"dstIndex":116,"srcIndex":141,"timestampMs":1536788634000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjOTFhZGI3MThhNjA0NWI0OTIzMDNmMDBkOGU4YmViOTU3ZGM3ODA="],"dstIndex":117,"srcIndex":142,"timestampMs":1519807271000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjYzg4OWRjOTRjZjZkYTE3YWU2ZWFiNWJiN2I3MTU1ZjU3NzUxOWQ="],"dstIndex":118,"srcIndex":143,"timestampMs":1519807329000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":157,"srcIndex":144,"timestampMs":1519807088000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10"],"dstIndex":157,"srcIndex":145,"timestampMs":1530297021000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","11"],"dstIndex":157,"srcIndex":146,"timestampMs":1536789479000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12"],"dstIndex":157,"srcIndex":147,"timestampMs":1536878086000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":157,"srcIndex":148,"timestampMs":1536878137000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":157,"srcIndex":149,"timestampMs":1519807129000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","4"],"dstIndex":157,"srcIndex":150,"timestampMs":1519807454000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","6"],"dstIndex":157,"srcIndex":151,"timestampMs":1521217624000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","7"],"dstIndex":157,"srcIndex":152,"timestampMs":1521569949000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","8"],"dstIndex":157,"srcIndex":153,"timestampMs":1521570243000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":157,"srcIndex":154,"timestampMs":1519807399000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":157,"srcIndex":155,"timestampMs":1519807636000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":157,"srcIndex":156,"timestampMs":1525373595000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],"dstIndex":155,"srcIndex":158,"timestampMs":1519878210000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100314038"],"dstIndex":155,"srcIndex":159,"timestampMs":1519878296000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420811872"],"dstIndex":146,"srcIndex":119,"timestampMs":1536789545000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813013"],"dstIndex":146,"srcIndex":120,"timestampMs":1536789813000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813206"],"dstIndex":146,"srcIndex":121,"timestampMs":1536789858000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813621"],"dstIndex":146,"srcIndex":122,"timestampMs":1536789965000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768703"],"dstIndex":149,"srcIndex":123,"timestampMs":1521217693000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768850"],"dstIndex":149,"srcIndex":124,"timestampMs":1521217725000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576185"],"dstIndex":149,"srcIndex":125,"timestampMs":1525137909000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576220"],"dstIndex":149,"srcIndex":126,"timestampMs":1525137925000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576248"],"dstIndex":149,"srcIndex":127,"timestampMs":1525137939000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576273"],"dstIndex":149,"srcIndex":128,"timestampMs":1525137951000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920"],"dstIndex":149,"srcIndex":129,"timestampMs":1525138231000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576936"],"dstIndex":149,"srcIndex":130,"timestampMs":1525138238000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768442"],"dstIndex":151,"srcIndex":131,"timestampMs":1521217642000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768538"],"dstIndex":151,"srcIndex":132,"timestampMs":1521217661000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","385223316"],"dstIndex":151,"srcIndex":133,"timestampMs":1524973307000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","417104047"],"dstIndex":151,"srcIndex":134,"timestampMs":1535576390000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","3","369162222"],"dstIndex":154,"srcIndex":135,"timestampMs":1519807420000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","5","396430464"],"dstIndex":155,"srcIndex":136,"timestampMs":1528764380000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":158,"srcIndex":137,"timestampMs":1519878210000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":138,"srcIndex":154,"timestampMs":1519807427000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":140,"srcIndex":155,"timestampMs":1519878354000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":144,"srcIndex":0,"timestampMs":1536878100000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":148,"srcIndex":0,"timestampMs":1536878149000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":156,"srcIndex":0,"timestampMs":1536952427000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","5","396430464"],"dstIndex":136,"srcIndex":0,"timestampMs":1536952482000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":137,"srcIndex":0,"timestampMs":1537294764000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","wchargin","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":137,"srcIndex":1,"timestampMs":1537294762000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":148,"srcIndex":0,"timestampMs":1536878144000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813206"],"dstIndex":121,"srcIndex":0,"timestampMs":1536952420000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","decentralion","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":137,"srcIndex":0,"timestampMs":1537294761000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","wchargin","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":137,"srcIndex":1,"timestampMs":1537294758000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":148,"srcIndex":0,"timestampMs":1548353975000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12"],"dstIndex":147,"srcIndex":0,"timestampMs":1536878091000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":148,"srcIndex":0,"timestampMs":1536878140000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":156,"srcIndex":0,"timestampMs":1536952428000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813206"],"dstIndex":121,"srcIndex":0,"timestampMs":1536952413000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":137,"srcIndex":0,"timestampMs":1537294756000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","wchargin","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":137,"srcIndex":1,"timestampMs":1537294753000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjBhMjIzMzQ2YjRlNmRlYzAxMjdiMWU2YWE4OTJjNGVlMDQyNGI2NmE=","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":154,"srcIndex":138,"timestampMs":1519807427000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZiZDFiNGMwYjcxOWMyMmM2ODhhNzQ4NjNiZTA3YTY5OWI3YjliMzQ=","5","sourcecred","github","USERLIKE","USER","wchargin"],"dstIndex":1,"srcIndex":139,"timestampMs":1536806901000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZkNWIzYWEzMWViYjY4YTA2Y2ViNDZiYmQ2Y2Y0OWI2Y2NkNmY1ZTY=","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":155,"srcIndex":140,"timestampMs":1519878354000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmM0MzBiZDc0NDU1MTA1Zjc3MjE1ZWNlNTE5NDUwOTRjZWVlZTZjODY=","5","sourcecred","github","USERLIKE","USER","wchargin"],"dstIndex":1,"srcIndex":141,"timestampMs":1536788634000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10"],"dstIndex":145,"srcIndex":145,"timestampMs":1530297021000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":149,"srcIndex":145,"timestampMs":1530297021000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjOTFhZGI3MThhNjA0NWI0OTIzMDNmMDBkOGU4YmViOTU3ZGM3ODA="],"dstIndex":142,"srcIndex":147,"timestampMs":1536878086000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjYzg4OWRjOTRjZjZkYTE3YWU2ZWFiNWJiN2I3MTU1ZjU3NzUxOWQ="],"dstIndex":143,"srcIndex":147,"timestampMs":1536878086000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":144,"srcIndex":149,"timestampMs":1519807129000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","sourcecred-test","example-github","5","5","sourcecred","github","USERLIKE","USER","wchargin"],"dstIndex":1,"srcIndex":155,"timestampMs":1519807636000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768703","6","sourcecred","github","ISSUE","sourcecred-test","example-github","6"],"dstIndex":151,"srcIndex":123,"timestampMs":1521217693000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768850","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768538"],"dstIndex":132,"srcIndex":124,"timestampMs":1521217725000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576185","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":155,"srcIndex":125,"timestampMs":1525137909000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576220","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],"dstIndex":158,"srcIndex":126,"timestampMs":1525137925000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576248","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":137,"srcIndex":127,"timestampMs":1525137939000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576273","5","sourcecred","github","USERLIKE","USER","wchargin"],"dstIndex":1,"srcIndex":128,"timestampMs":1525137951000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":144,"srcIndex":129,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":149,"srcIndex":129,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":154,"srcIndex":129,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],"dstIndex":158,"srcIndex":129,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":137,"srcIndex":129,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","385223316","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":149,"srcIndex":133,"timestampMs":1524973307000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","3","369162222","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":149,"srcIndex":135,"timestampMs":1519807420000}],"nodes":[{"description":"dandelion","index":0,"timestampMs":null},{"description":"william","index":1,"timestampMs":null},{"description":"beanow","index":2,"timestampMs":null},{"description":"❤️ by dl-proto on [#1 on My First Test Post](https://sourcecred-test.discourse.group/t/11/1)","index":3,"timestampMs":1564744498189},{"description":"[#1 on About the Site Feedback category](https://sourcecred-test.discourse.group/t/1/1)","index":4,"timestampMs":1554236409844},{"description":"[#1 on Welcome to Discourse](https://sourcecred-test.discourse.group/t/7/1)","index":5,"timestampMs":1554236412933},{"description":"[#1 on My First Test Post](https://sourcecred-test.discourse.group/t/11/1)","index":6,"timestampMs":1564744349476},{"description":"[#2 on My First Test Post](https://sourcecred-test.discourse.group/t/11/2)","index":7,"timestampMs":1564744496285},{"description":"[#1 on A Thread With Links](https://sourcecred-test.discourse.group/t/13/1)","index":8,"timestampMs":1564744553905},{"description":"[#2 on A Thread With Links](https://sourcecred-test.discourse.group/t/13/2)","index":9,"timestampMs":1564744591313},{"description":"[#3 on My First Test Post](https://sourcecred-test.discourse.group/t/11/3)","index":10,"timestampMs":1564951839667},{"description":"[#1 on Test Poll Please Ignore](https://sourcecred-test.discourse.group/t/18/1)","index":11,"timestampMs":1570049410625},{"description":"[#1 on This post will be a wiki](https://sourcecred-test.discourse.group/t/19/1)","index":12,"timestampMs":1570049491743},{"description":"[#2 on This post will be a wiki](https://sourcecred-test.discourse.group/t/19/2)","index":13,"timestampMs":1570049836311},{"description":"[#1 on 123 a post with numbers in slug](https://sourcecred-test.discourse.group/t/20/1)","index":14,"timestampMs":1570420159922},{"description":"[#1 on A Post With References](https://sourcecred-test.discourse.group/t/21/1)","index":15,"timestampMs":1571855191281},{"description":"[#1 on About the Filler category](https://sourcecred-test.discourse.group/t/24/1)","index":16,"timestampMs":1573839531354},{"description":"[#1 on About the Big Filler category](https://sourcecred-test.discourse.group/t/25/1)","index":17,"timestampMs":1573839624599},{"description":"[#1 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/1)","index":18,"timestampMs":1573839733554},{"description":"[#2 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/2)","index":19,"timestampMs":1573839810871},{"description":"[#3 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/3)","index":20,"timestampMs":1573839814701},{"description":"[#4 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/4)","index":21,"timestampMs":1573839818330},{"description":"[#5 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/5)","index":22,"timestampMs":1573839821821},{"description":"[#6 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/6)","index":23,"timestampMs":1573839825601},{"description":"[#7 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/7)","index":24,"timestampMs":1573839828825},{"description":"[#8 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/8)","index":25,"timestampMs":1573839832023},{"description":"[#9 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/9)","index":26,"timestampMs":1573839835298},{"description":"[#10 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/10)","index":27,"timestampMs":1573839840261},{"description":"[#11 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/11)","index":28,"timestampMs":1573839843418},{"description":"[#12 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/12)","index":29,"timestampMs":1573839846537},{"description":"[#13 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/13)","index":30,"timestampMs":1573839849459},{"description":"[#14 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/14)","index":31,"timestampMs":1573839852186},{"description":"[#15 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/15)","index":32,"timestampMs":1573839855068},{"description":"[#16 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/16)","index":33,"timestampMs":1573839857787},{"description":"[#17 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/17)","index":34,"timestampMs":1573839860730},{"description":"[#18 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/18)","index":35,"timestampMs":1573839863576},{"description":"[#19 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/19)","index":36,"timestampMs":1573839866548},{"description":"[#20 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/20)","index":37,"timestampMs":1573839869555},{"description":"[#21 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/21)","index":38,"timestampMs":1573839872244},{"description":"[#1 on Filler Topic #1](https://sourcecred-test.discourse.group/t/27/1)","index":39,"timestampMs":1573840159198},{"description":"[#1 on Filler Topic #2](https://sourcecred-test.discourse.group/t/28/1)","index":40,"timestampMs":1573840233231},{"description":"[#1 on Filler Topic #3](https://sourcecred-test.discourse.group/t/29/1)","index":41,"timestampMs":1573840310550},{"description":"[#1 on Filler Topic #4](https://sourcecred-test.discourse.group/t/30/1)","index":42,"timestampMs":1573840335123},{"description":"[#1 on Filler Topic #5](https://sourcecred-test.discourse.group/t/31/1)","index":43,"timestampMs":1573840348410},{"description":"[#1 on Filler Topic #6](https://sourcecred-test.discourse.group/t/32/1)","index":44,"timestampMs":1573840354669},{"description":"[#1 on Filler Topic #7](https://sourcecred-test.discourse.group/t/33/1)","index":45,"timestampMs":1573840360335},{"description":"[#1 on Filler Topic #8](https://sourcecred-test.discourse.group/t/34/1)","index":46,"timestampMs":1573840366708},{"description":"[#1 on Filler Topic #9](https://sourcecred-test.discourse.group/t/35/1)","index":47,"timestampMs":1573840372677},{"description":"[#1 on Filler Topic #10](https://sourcecred-test.discourse.group/t/36/1)","index":48,"timestampMs":1573840428729},{"description":"[#1 on Filler Topic #11](https://sourcecred-test.discourse.group/t/37/1)","index":49,"timestampMs":1573840450294},{"description":"[#1 on Filler Topic #12](https://sourcecred-test.discourse.group/t/38/1)","index":50,"timestampMs":1573840464212},{"description":"[#1 on Filler Topic #13](https://sourcecred-test.discourse.group/t/39/1)","index":51,"timestampMs":1573840469806},{"description":"[#1 on Filler Topic #14](https://sourcecred-test.discourse.group/t/40/1)","index":52,"timestampMs":1573840474450},{"description":"[#1 on Filler Topic #15](https://sourcecred-test.discourse.group/t/41/1)","index":53,"timestampMs":1573840480604},{"description":"[#1 on Filler Topic #16](https://sourcecred-test.discourse.group/t/42/1)","index":54,"timestampMs":1573840486299},{"description":"[#1 on Filler Topic #17](https://sourcecred-test.discourse.group/t/43/1)","index":55,"timestampMs":1573840496395},{"description":"[#1 on Filler Topic #18](https://sourcecred-test.discourse.group/t/44/1)","index":56,"timestampMs":1573840503032},{"description":"[#1 on Filler Topic #19](https://sourcecred-test.discourse.group/t/45/1)","index":57,"timestampMs":1573840509355},{"description":"[#1 on Filler Topic #20](https://sourcecred-test.discourse.group/t/46/1)","index":58,"timestampMs":1573840516283},{"description":"[#1 on Filler Topic #21](https://sourcecred-test.discourse.group/t/47/1)","index":59,"timestampMs":1573840525734},{"description":"[#1 on Filler Topic #22](https://sourcecred-test.discourse.group/t/48/1)","index":60,"timestampMs":1573840532029},{"description":"[#1 on Filler Topic #23](https://sourcecred-test.discourse.group/t/49/1)","index":61,"timestampMs":1573840538301},{"description":"[#1 on Filler Topic #24](https://sourcecred-test.discourse.group/t/50/1)","index":62,"timestampMs":1573840544868},{"description":"[#1 on Filler Topic #25](https://sourcecred-test.discourse.group/t/51/1)","index":63,"timestampMs":1573840551728},{"description":"[#1 on Filler Topic #26](https://sourcecred-test.discourse.group/t/52/1)","index":64,"timestampMs":1573840562068},{"description":"[#1 on Filler Topic #27](https://sourcecred-test.discourse.group/t/53/1)","index":65,"timestampMs":1573840567788},{"description":"[#1 on Filler Topic #28](https://sourcecred-test.discourse.group/t/54/1)","index":66,"timestampMs":1573840574181},{"description":"[#1 on Filler Topic #29](https://sourcecred-test.discourse.group/t/55/1)","index":67,"timestampMs":1573840580352},{"description":"[#1 on Filler Topic #30](https://sourcecred-test.discourse.group/t/56/1)","index":68,"timestampMs":1573840590166},{"description":"[#1 on Filler Topic #31](https://sourcecred-test.discourse.group/t/57/1)","index":69,"timestampMs":1573840598964},{"description":"[About the Site Feedback category](https://sourcecred-test.discourse.group/t/1)","index":70,"timestampMs":1554236409674},{"description":"[My First Test Post](https://sourcecred-test.discourse.group/t/11)","index":71,"timestampMs":1564744349408},{"description":"[A Thread With Links](https://sourcecred-test.discourse.group/t/13)","index":72,"timestampMs":1564744553843},{"description":"[Test Poll Please Ignore](https://sourcecred-test.discourse.group/t/18)","index":73,"timestampMs":1570049410568},{"description":"[This post will be a wiki](https://sourcecred-test.discourse.group/t/19)","index":74,"timestampMs":1570049491690},{"description":"[123 a post with numbers in slug](https://sourcecred-test.discourse.group/t/20)","index":75,"timestampMs":1570420159868},{"description":"[A Post With References](https://sourcecred-test.discourse.group/t/21)","index":76,"timestampMs":1571855191140},{"description":"[About the Filler category](https://sourcecred-test.discourse.group/t/24)","index":77,"timestampMs":1573839531345},{"description":"[About the Big Filler category](https://sourcecred-test.discourse.group/t/25)","index":78,"timestampMs":1573839624590},{"description":"[Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26)","index":79,"timestampMs":1573839733506},{"description":"[Filler Topic #1](https://sourcecred-test.discourse.group/t/27)","index":80,"timestampMs":1573840159140},{"description":"[Filler Topic #2](https://sourcecred-test.discourse.group/t/28)","index":81,"timestampMs":1573840233177},{"description":"[Filler Topic #3](https://sourcecred-test.discourse.group/t/29)","index":82,"timestampMs":1573840310488},{"description":"[Filler Topic #4](https://sourcecred-test.discourse.group/t/30)","index":83,"timestampMs":1573840335060},{"description":"[Filler Topic #5](https://sourcecred-test.discourse.group/t/31)","index":84,"timestampMs":1573840348348},{"description":"[Filler Topic #6](https://sourcecred-test.discourse.group/t/32)","index":85,"timestampMs":1573840354599},{"description":"[Filler Topic #7](https://sourcecred-test.discourse.group/t/33)","index":86,"timestampMs":1573840360253},{"description":"[Filler Topic #8](https://sourcecred-test.discourse.group/t/34)","index":87,"timestampMs":1573840366625},{"description":"[Filler Topic #9](https://sourcecred-test.discourse.group/t/35)","index":88,"timestampMs":1573840372613},{"description":"[Filler Topic #10](https://sourcecred-test.discourse.group/t/36)","index":89,"timestampMs":1573840428677},{"description":"[Filler Topic #11](https://sourcecred-test.discourse.group/t/37)","index":90,"timestampMs":1573840450242},{"description":"[Filler Topic #12](https://sourcecred-test.discourse.group/t/38)","index":91,"timestampMs":1573840464152},{"description":"[Filler Topic #13](https://sourcecred-test.discourse.group/t/39)","index":92,"timestampMs":1573840469748},{"description":"[Filler Topic #14](https://sourcecred-test.discourse.group/t/40)","index":93,"timestampMs":1573840474386},{"description":"[Filler Topic #15](https://sourcecred-test.discourse.group/t/41)","index":94,"timestampMs":1573840480538},{"description":"[Filler Topic #16](https://sourcecred-test.discourse.group/t/42)","index":95,"timestampMs":1573840486242},{"description":"[Filler Topic #17](https://sourcecred-test.discourse.group/t/43)","index":96,"timestampMs":1573840496337},{"description":"[Filler Topic #18](https://sourcecred-test.discourse.group/t/44)","index":97,"timestampMs":1573840502978},{"description":"[Filler Topic #19](https://sourcecred-test.discourse.group/t/45)","index":98,"timestampMs":1573840509297},{"description":"[Filler Topic #20](https://sourcecred-test.discourse.group/t/46)","index":99,"timestampMs":1573840516235},{"description":"[Filler Topic #21](https://sourcecred-test.discourse.group/t/47)","index":100,"timestampMs":1573840525656},{"description":"[Filler Topic #22](https://sourcecred-test.discourse.group/t/48)","index":101,"timestampMs":1573840531935},{"description":"[Filler Topic #23](https://sourcecred-test.discourse.group/t/49)","index":102,"timestampMs":1573840538246},{"description":"[Filler Topic #24](https://sourcecred-test.discourse.group/t/50)","index":103,"timestampMs":1573840544797},{"description":"[Filler Topic #25](https://sourcecred-test.discourse.group/t/51)","index":104,"timestampMs":1573840551656},{"description":"[Filler Topic #26](https://sourcecred-test.discourse.group/t/52)","index":105,"timestampMs":1573840562010},{"description":"[Filler Topic #27](https://sourcecred-test.discourse.group/t/53)","index":106,"timestampMs":1573840567727},{"description":"[Filler Topic #28](https://sourcecred-test.discourse.group/t/54)","index":107,"timestampMs":1573840574124},{"description":"[Filler Topic #29](https://sourcecred-test.discourse.group/t/55)","index":108,"timestampMs":1573840580295},{"description":"[Filler Topic #30](https://sourcecred-test.discourse.group/t/56)","index":109,"timestampMs":1573840590101},{"description":"[Filler Topic #31](https://sourcecred-test.discourse.group/t/57)","index":110,"timestampMs":1573840598902},{"description":"[Welcome to Discourse](https://sourcecred-test.discourse.group/t/7)","index":111,"timestampMs":1554236412879},{"description":"[@system](https://sourcecred-test.discourse.group/u/system/)","index":112,"timestampMs":null},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/11#issuecomment-420811872) on [#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":119,"timestampMs":1536789545000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/11#issuecomment-420813013) on [#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":120,"timestampMs":1536789813000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/11#issuecomment-420813206) on [#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":121,"timestampMs":1536789858000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/11#issuecomment-420813621) on [#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":122,"timestampMs":1536789965000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-373768703) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":123,"timestampMs":1521217693000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-373768850) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":124,"timestampMs":1521217725000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576185) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":125,"timestampMs":1525137909000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576220) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":126,"timestampMs":1525137925000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576248) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":127,"timestampMs":1525137939000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576273) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":128,"timestampMs":1525137951000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576920) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":129,"timestampMs":1525138231000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576936) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":130,"timestampMs":1525138238000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/6#issuecomment-373768442) on [#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":131,"timestampMs":1521217642000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/6#issuecomment-373768538) on [#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":132,"timestampMs":1521217661000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/6#issuecomment-385223316) on [#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":133,"timestampMs":1524973307000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/6#issuecomment-417104047) on [#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":134,"timestampMs":1535576390000},{"description":"[comment](https://github.com/sourcecred-test/example-github/pull/3#issuecomment-369162222) on [#3](https://github.com/sourcecred-test/example-github/pull/3): Add README, merge via PR.","index":135,"timestampMs":1519807420000},{"description":"[comment](https://github.com/sourcecred-test/example-github/pull/5#issuecomment-396430464) on [#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":136,"timestampMs":1528764380000},{"description":"[comment](https://github.com/sourcecred-test/example-github/pull/5#discussion_r171460198) on [review](https://github.com/sourcecred-test/example-github/pull/5#pullrequestreview-100313899) on [#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":137,"timestampMs":1519878210000},{"description":"[0a22334](https://github.com/sourcecred-test/example-github/commit/0a223346b4e6dec0127b1e6aa892c4ee0424b66a): Merge pull request #3 from sourcecred/add-readme","index":138,"timestampMs":1519807427000},{"description":"[6bd1b4c](https://github.com/sourcecred-test/example-github/commit/6bd1b4c0b719c22c688a74863be07a699b7b9b34): A commit from someone with no GitHub account","index":139,"timestampMs":1536806901000},{"description":"[6d5b3aa](https://github.com/sourcecred-test/example-github/commit/6d5b3aa31ebb68a06ceb46bbd6cf49b6ccd6f5e6): This pull request will be more contentious. I can feel it... (#5)","index":140,"timestampMs":1519878354000},{"description":"[c430bd7](https://github.com/sourcecred-test/example-github/commit/c430bd74455105f77215ece51945094ceeee6c86): Hello from credbot!","index":141,"timestampMs":1536788634000},{"description":"[ec91adb](https://github.com/sourcecred-test/example-github/commit/ec91adb718a6045b492303f00d8e8beb957dc780): Commit without pull request.","index":142,"timestampMs":1519807271000},{"description":"[ecc889d](https://github.com/sourcecred-test/example-github/commit/ecc889dc94cf6da17ae6eab5bb7b7155f577519d): Add README, merge via PR.","index":143,"timestampMs":1519807329000},{"description":"[#1](https://github.com/sourcecred-test/example-github/issues/1): An example issue.","index":144,"timestampMs":1519807088000},{"description":"[#10](https://github.com/sourcecred-test/example-github/issues/10): Paired with multireference","index":145,"timestampMs":1530297021000},{"description":"[#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":146,"timestampMs":1536789479000},{"description":"[#12](https://github.com/sourcecred-test/example-github/issues/12): An issue with commit references","index":147,"timestampMs":1536878086000},{"description":"[#13](https://github.com/sourcecred-test/example-github/issues/13): An issue with reactions","index":148,"timestampMs":1536878137000},{"description":"[#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":149,"timestampMs":1519807129000},{"description":"[#4](https://github.com/sourcecred-test/example-github/issues/4): A closed pull request","index":150,"timestampMs":1519807454000},{"description":"[#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":151,"timestampMs":1521217624000},{"description":"[#7](https://github.com/sourcecred-test/example-github/issues/7): An issue with an extremely long title, which even has a VerySuperFragicalisticialiManyCharacterUberLongTriplePlusGood word in it, and should really be truncated intelligently or something","index":152,"timestampMs":1521569949000},{"description":"[#8](https://github.com/sourcecred-test/example-github/issues/8): Issue with Unicode: ȴሲ𣐳楢👍 :heart: 𐤔𐤁𐤀𐤑𐤍𐤉𐤔𐤌𐤄𐤍𐤍 ❤️","index":153,"timestampMs":1521570243000},{"description":"[#3](https://github.com/sourcecred-test/example-github/pull/3): Add README, merge via PR.","index":154,"timestampMs":1519807399000},{"description":"[#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":155,"timestampMs":1519807636000},{"description":"[#9](https://github.com/sourcecred-test/example-github/pull/9): An unmerged pull request","index":156,"timestampMs":1525373595000},{"description":"[sourcecred-test/example-github](https://github.com/sourcecred-test/example-github)","index":157,"timestampMs":1519807034000},{"description":"[review](https://github.com/sourcecred-test/example-github/pull/5#pullrequestreview-100313899) on [#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":158,"timestampMs":1519878210000},{"description":"[review](https://github.com/sourcecred-test/example-github/pull/5#pullrequestreview-100314038) on [#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":159,"timestampMs":1519878296000},{"description":"[@credbot](https://github.com/credbot)","index":160,"timestampMs":null}],"sortedNodeAddresses":[["sourcecred","core","IDENTITY","USER","YX6zzoNxYwGgLduJqWVoAg"],["sourcecred","core","IDENTITY","USER","mbzRr0D3A2wcD1E7p0H2rQ"],["sourcecred","core","IDENTITY","USER","ytxt20G2QLd8Z135K0cyUA"],["sourcecred","discourse","like","https://sourcecred-test.discourse.group","dl-proto","14"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","1"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","10"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","14"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","16"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","17"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","18"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","22"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","25"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","26"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","27"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","28"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","29"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","32"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","33"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","34"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","35"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","36"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","37"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","38"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","39"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","40"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","41"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","42"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","43"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","44"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","45"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","46"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","47"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","48"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","49"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","50"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","51"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","52"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","53"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","54"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","55"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","56"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","57"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","58"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","59"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","60"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","61"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","62"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","63"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","64"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","65"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","66"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","67"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","68"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","69"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","70"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","71"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","72"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","73"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","74"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","75"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","76"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","77"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","78"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","79"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","80"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","81"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","82"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","83"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","84"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","85"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","1"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","11"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","13"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","18"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","19"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","20"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","21"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","24"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","25"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","26"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","27"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","28"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","29"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","30"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","31"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","32"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","33"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","34"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","35"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","36"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","37"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","38"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","39"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","40"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","41"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","42"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","43"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","44"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","45"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","46"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","47"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","48"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","49"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","50"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","51"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","52"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","53"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","54"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","55"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","56"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","57"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","7"],["sourcecred","discourse","user","https://sourcecred-test.discourse.group","system"],["sourcecred","git","COMMIT","0a223346b4e6dec0127b1e6aa892c4ee0424b66a"],["sourcecred","git","COMMIT","6bd1b4c0b719c22c688a74863be07a699b7b9b34"],["sourcecred","git","COMMIT","6d5b3aa31ebb68a06ceb46bbd6cf49b6ccd6f5e6"],["sourcecred","git","COMMIT","c430bd74455105f77215ece51945094ceeee6c86"],["sourcecred","git","COMMIT","ec91adb718a6045b492303f00d8e8beb957dc780"],["sourcecred","git","COMMIT","ecc889dc94cf6da17ae6eab5bb7b7155f577519d"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420811872"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813013"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813206"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813621"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768703"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768850"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576185"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576220"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576248"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576273"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576936"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768442"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768538"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","385223316"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","417104047"],["sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","3","369162222"],["sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","5","396430464"],["sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjBhMjIzMzQ2YjRlNmRlYzAxMjdiMWU2YWE4OTJjNGVlMDQyNGI2NmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZiZDFiNGMwYjcxOWMyMmM2ODhhNzQ4NjNiZTA3YTY5OWI3YjliMzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZkNWIzYWEzMWViYjY4YTA2Y2ViNDZiYmQ2Y2Y0OWI2Y2NkNmY1ZTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmM0MzBiZDc0NDU1MTA1Zjc3MjE1ZWNlNTE5NDUwOTRjZWVlZTZjODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjOTFhZGI3MThhNjA0NWI0OTIzMDNmMDBkOGU4YmViOTU3ZGM3ODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjYzg4OWRjOTRjZjZkYTE3YWU2ZWFiNWJiN2I3MTU1ZjU3NzUxOWQ="],["sourcecred","github","ISSUE","sourcecred-test","example-github","1"],["sourcecred","github","ISSUE","sourcecred-test","example-github","10"],["sourcecred","github","ISSUE","sourcecred-test","example-github","11"],["sourcecred","github","ISSUE","sourcecred-test","example-github","12"],["sourcecred","github","ISSUE","sourcecred-test","example-github","13"],["sourcecred","github","ISSUE","sourcecred-test","example-github","2"],["sourcecred","github","ISSUE","sourcecred-test","example-github","4"],["sourcecred","github","ISSUE","sourcecred-test","example-github","6"],["sourcecred","github","ISSUE","sourcecred-test","example-github","7"],["sourcecred","github","ISSUE","sourcecred-test","example-github","8"],["sourcecred","github","PULL","sourcecred-test","example-github","3"],["sourcecred","github","PULL","sourcecred-test","example-github","5"],["sourcecred","github","PULL","sourcecred-test","example-github","9"],["sourcecred","github","REPO","sourcecred-test","example-github"],["sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],["sourcecred","github","REVIEW","sourcecred-test","example-github","5","100314038"],["sourcecred","github","USERLIKE","BOT","credbot"]]}],"weightsJSON":[{"type":"sourcecred/weights","version":"0.2.0"},{"edgeWeights":{"E\u0000sourcecred\u0000discourse\u0000authors\u0000post\u0000":{"backwards":1,"forwards":0},"E\u0000sourcecred\u0000discourse\u0000authors\u0000topic\u0000":{"backwards":1,"forwards":0},"E\u0000sourcecred\u0000discourse\u0000createsLike\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000discourse\u0000likes\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000discourse\u0000references\u0000post\u0000":{"backwards":0,"forwards":0.5},"E\u0000sourcecred\u0000discourse\u0000references\u0000topic\u0000":{"backwards":0,"forwards":0.5},"E\u0000sourcecred\u0000discourse\u0000references\u0000user\u0000":{"backwards":0,"forwards":0.25},"E\u0000sourcecred\u0000discourse\u0000replyTo\u0000":{"backwards":0,"forwards":0.5},"E\u0000sourcecred\u0000discourse\u0000topicContainsPost\u0000":{"backwards":0.125,"forwards":0},"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\u0000discourse\u0000like\u0000":4,"N\u0000sourcecred\u0000discourse\u0000like\u0000https://sourcecred-test.discourse.group\u0000dl-proto\u000014\u0000":0.1,"N\u0000sourcecred\u0000discourse\u0000post\u0000":32,"N\u0000sourcecred\u0000discourse\u0000topic\u0000":0,"N\u0000sourcecred\u0000discourse\u0000user\u0000":0,"N\u0000sourcecred\u0000github\u0000COMMENT\u0000":1,"N\u0000sourcecred\u0000github\u0000COMMIT\u0000":1,"N\u0000sourcecred\u0000github\u0000ISSUE\u0000":2,"N\u0000sourcecred\u0000github\u0000PULL\u0000":4,"N\u0000sourcecred\u0000github\u0000PULL\u0000sourcecred-test\u0000example-github\u00009\u0000":0,"N\u0000sourcecred\u0000github\u0000REPO\u0000":4,"N\u0000sourcecred\u0000github\u0000REVIEW\u0000":1,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000":32,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000":0}}]}]}] \ No newline at end of file +[{"type":"sourcecred/credResult","version":"0.1.0"},{"credData":{"edgeOverTime":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"edgeSummaries":[{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":32.29729281559005,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":8.81262252612264,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":12.726734241033874,"forwardFlow":0},{"backwardFlow":37.52297393940278,"forwardFlow":0},{"backwardFlow":22.06423708027518,"forwardFlow":0},{"backwardFlow":22.55228537870017,"forwardFlow":0},{"backwardFlow":24.89532295751457,"forwardFlow":0},{"backwardFlow":26.807204845061083,"forwardFlow":0},{"backwardFlow":17.247795407327985,"forwardFlow":0},{"backwardFlow":24.596180632495138,"forwardFlow":0},{"backwardFlow":15.111134640987173,"forwardFlow":0},{"backwardFlow":22.06423708027518,"forwardFlow":0},{"backwardFlow":23.757617729526974,"forwardFlow":0},{"backwardFlow":23.27543779680428,"forwardFlow":0},{"backwardFlow":23.27543779680428,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":6.512295257870438,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":0.3974123857430014,"forwardFlow":0},{"backwardFlow":2.5553387142336463,"forwardFlow":0},{"backwardFlow":0.7759143684743475,"forwardFlow":0},{"backwardFlow":1.3730623989866786,"forwardFlow":0},{"backwardFlow":2.643898322010334,"forwardFlow":0},{"backwardFlow":0.47147752384679475,"forwardFlow":0},{"backwardFlow":1.426815709915771,"forwardFlow":0},{"backwardFlow":0.7243829596652098,"forwardFlow":0},{"backwardFlow":0.7243829596652098,"forwardFlow":0},{"backwardFlow":0,"forwardFlow":11.941461378845586},{"backwardFlow":0,"forwardFlow":3.3894057409642477},{"backwardFlow":0,"forwardFlow":11.878808864763487},{"backwardFlow":0,"forwardFlow":7.555567320493586},{"backwardFlow":0,"forwardFlow":3.777783660246793},{"backwardFlow":0,"forwardFlow":11.03211854013759},{"backwardFlow":0,"forwardFlow":11.03211854013759},{"backwardFlow":0,"forwardFlow":11.276142689350085},{"backwardFlow":0,"forwardFlow":8.623897703663992},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":0,"forwardFlow":4.40631126306132},{"backwardFlow":2.909429724600535,"forwardFlow":0},{"backwardFlow":4.690371742425348,"forwardFlow":0},{"backwardFlow":2.7580296350343976,"forwardFlow":0},{"backwardFlow":2.819035672337521,"forwardFlow":0},{"backwardFlow":2.9697022161908717,"forwardFlow":0},{"backwardFlow":2.7580296350343976,"forwardFlow":0},{"backwardFlow":3.111915369689321,"forwardFlow":0},{"backwardFlow":3.3509006056326354,"forwardFlow":0},{"backwardFlow":2.155974425915998,"forwardFlow":0},{"backwardFlow":3.074522579061892,"forwardFlow":0},{"backwardFlow":1.8888918301233966,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":4.037161601948756,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.10157781576533,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":1.5908417801292343,"forwardFlow":0},{"backwardFlow":2.909429724600535,"forwardFlow":0},{"backwardFlow":1.23166644969911,"forwardFlow":0.30759498291839477},{"backwardFlow":213.27421198072437,"forwardFlow":53.209378966705195},{"backwardFlow":0.884190589907874,"forwardFlow":0.47062937565373236},{"backwardFlow":0.8432201719069429,"forwardFlow":0.47062937565373236},{"backwardFlow":2.2065334515694763,"forwardFlow":0.47062937565373236},{"backwardFlow":2.2065334515694763,"forwardFlow":0.47062937565373236},{"backwardFlow":2.6366704115765787,"forwardFlow":0.47062937565373236},{"backwardFlow":1.2722374646747094,"forwardFlow":0.2792778946602045},{"backwardFlow":1.2303495512411717,"forwardFlow":0.02325631576500509},{"backwardFlow":2.4925440075851393,"forwardFlow":0.02325631576500509},{"backwardFlow":1.5909254047775938,"forwardFlow":0.47062937565373236},{"backwardFlow":2.4070255266787366,"forwardFlow":0.47062937565373236},{"backwardFlow":2.1235942406373876,"forwardFlow":0.38827914315103995},{"backwardFlow":2.1836068977221763,"forwardFlow":0.4105573631980585},{"backwardFlow":2.1836068977221763,"forwardFlow":0.4105573631980585},{"backwardFlow":3.5330259381910283,"forwardFlow":0.47062937565373236},{"backwardFlow":2.552882721546224,"forwardFlow":0.47062937565373236},{"backwardFlow":0.0453399912438381,"forwardFlow":0.18552453127298213},{"backwardFlow":1.2683849214654965,"forwardFlow":0.02325631576500509},{"backwardFlow":0.7501593824005399,"forwardFlow":0.38827914315103995},{"backwardFlow":0.7501593824005399,"forwardFlow":0.38827914315103995},{"backwardFlow":0.8261684338703017,"forwardFlow":0.18552453127298213},{"backwardFlow":0.8261684338703017,"forwardFlow":0.18552453127298213},{"backwardFlow":0.8261684338703017,"forwardFlow":0.18552453127298213},{"backwardFlow":0.8261684338703017,"forwardFlow":0.18552453127298213},{"backwardFlow":0.3544299202677063,"forwardFlow":0.18552453127298213},{"backwardFlow":1.2382777707009582,"forwardFlow":0.18552453127298213},{"backwardFlow":1.151866722683174,"forwardFlow":0.38827914315103995},{"backwardFlow":1.2454418124217246,"forwardFlow":0.38827914315103995},{"backwardFlow":0.8218193073881626,"forwardFlow":0.18552453127298213},{"backwardFlow":0.8107798830997714,"forwardFlow":0.47062937565373236},{"backwardFlow":1.2722374646747094,"forwardFlow":0.29129792259202597},{"backwardFlow":2.315446054868898,"forwardFlow":0.4853129546154356},{"backwardFlow":0.0453399912438381,"forwardFlow":0.2831253267450182},{"backwardFlow":1.2876486074945066,"forwardFlow":0.5004729146873527},{"backwardFlow":1.188272908940098,"forwardFlow":0.5004729146873527},{"backwardFlow":1.3261114489310903,"forwardFlow":0.4853129546154356},{"backwardFlow":1.1148786856931958,"forwardFlow":0.26419748863055076},{"backwardFlow":1.2522208563023216,"forwardFlow":0.5004729146873527},{"backwardFlow":2.0431910139122267,"forwardFlow":2.6366704115765787},{"backwardFlow":0.26517394513728776,"forwardFlow":1.2722374646747094},{"backwardFlow":0.5004843156165583,"forwardFlow":2.315446054868898},{"backwardFlow":0.5004843156165583,"forwardFlow":1.2303495512411717},{"backwardFlow":0.5004843156165583,"forwardFlow":2.4925440075851393},{"backwardFlow":2.0431910139122267,"forwardFlow":1.5909254047775938},{"backwardFlow":2.0431910139122267,"forwardFlow":2.4070255266787366},{"backwardFlow":1.19047980618083,"forwardFlow":2.1235942406373876},{"backwardFlow":0.8533799469203983,"forwardFlow":2.1836068977221763},{"backwardFlow":0.8533799469203983,"forwardFlow":2.1836068977221763},{"backwardFlow":2.0431910139122267,"forwardFlow":3.5330259381910283},{"backwardFlow":2.0431910139122267,"forwardFlow":2.552882721546224},{"backwardFlow":0.07593220326701426,"forwardFlow":0.0453399912438381},{"backwardFlow":0.638220680386556,"forwardFlow":1.2876486074945066},{"backwardFlow":0.638220680386556,"forwardFlow":1.188272908940098},{"backwardFlow":0.5788615137172245,"forwardFlow":2.5257650659509867},{"backwardFlow":0.5788615137172245,"forwardFlow":1.3261114489310903},{"backwardFlow":0.5788615137172245,"forwardFlow":2.5837149164177027},{"backwardFlow":0.5788615137172245,"forwardFlow":1.2683849214654965},{"backwardFlow":0.31161986666175445,"forwardFlow":0.7501593824005399},{"backwardFlow":0.31161986666175445,"forwardFlow":0.7501593824005399},{"backwardFlow":0.28397250464635393,"forwardFlow":0.8261684338703017},{"backwardFlow":0.28397250464635393,"forwardFlow":0.8261684338703017},{"backwardFlow":0.28397250464635393,"forwardFlow":0.8261684338703017},{"backwardFlow":0.28397250464635393,"forwardFlow":0.8261684338703017},{"backwardFlow":0.28397250464635393,"forwardFlow":0.3544299202677063},{"backwardFlow":0.28397250464635393,"forwardFlow":1.2382777707009582},{"backwardFlow":0.5308985601593469,"forwardFlow":1.151866722683174},{"backwardFlow":0.5308985601593469,"forwardFlow":1.2454418124217246},{"backwardFlow":0.22848974357955865,"forwardFlow":0.8218193073881626},{"backwardFlow":53.10120979086027,"forwardFlow":213.27421198072437},{"backwardFlow":0.8832564845477571,"forwardFlow":0.8107798830997714},{"backwardFlow":0.2668722154522053,"forwardFlow":1.1148786856931958},{"backwardFlow":0.32191215187362665,"forwardFlow":1.2522208563023216},{"backwardFlow":0.884190589907874,"forwardFlow":1.7665129690955141},{"backwardFlow":0.8432201719069429,"forwardFlow":1.276441360773112},{"backwardFlow":0,"forwardFlow":0.09302526306002036},{"backwardFlow":0,"forwardFlow":0.09302526306002036},{"backwardFlow":0,"forwardFlow":0.09302526306002036},{"backwardFlow":0,"forwardFlow":0.09302526306002036},{"backwardFlow":0,"forwardFlow":0.07075878340308374},{"backwardFlow":0,"forwardFlow":0.24062107953264114},{"backwardFlow":0,"forwardFlow":0.18605052612004072},{"backwardFlow":0,"forwardFlow":0.18605052612004072},{"backwardFlow":0,"forwardFlow":0.14151756680616748},{"backwardFlow":0,"forwardFlow":0.4812421590652823},{"backwardFlow":0,"forwardFlow":0.0000024969178632031196},{"backwardFlow":0,"forwardFlow":0.04651263153001018},{"backwardFlow":0,"forwardFlow":0.04651263153001018},{"backwardFlow":0,"forwardFlow":0.04651263153001018},{"backwardFlow":0,"forwardFlow":0.04651263153001018},{"backwardFlow":0,"forwardFlow":0.03537939170154187},{"backwardFlow":0,"forwardFlow":0.12031053976632057},{"backwardFlow":0,"forwardFlow":0.884190589907874},{"backwardFlow":0,"forwardFlow":2.3816348007593136},{"backwardFlow":0,"forwardFlow":0.8432201719069429},{"backwardFlow":0,"forwardFlow":1.23166644969911},{"backwardFlow":0,"forwardFlow":1.2722374646747094},{"backwardFlow":0,"forwardFlow":1.2722374646747094},{"backwardFlow":0,"forwardFlow":1.2303495512411717},{"backwardFlow":0,"forwardFlow":1.2303495512411717},{"backwardFlow":0,"forwardFlow":1.5909254047775938},{"backwardFlow":0,"forwardFlow":2.552882721546224},{"backwardFlow":0,"forwardFlow":0.7501593824005399},{"backwardFlow":0,"forwardFlow":0.7501593824005399},{"backwardFlow":0,"forwardFlow":0.8261684338703017},{"backwardFlow":0,"forwardFlow":0.8261684338703017},{"backwardFlow":0,"forwardFlow":0.8261684338703017},{"backwardFlow":0,"forwardFlow":0.8261684338703017},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.3544299202677063},{"backwardFlow":0,"forwardFlow":0.8218193073881626},{"backwardFlow":0,"forwardFlow":0.8107798830997714}],"intervalEnds":[1520121600000,1520726400000,1521331200000,1521936000000,1522540800000,1523145600000,1523750400000,1524355200000,1524960000000,1525564800000,1526169600000,1526774400000,1527379200000,1527984000000,1528588800000,1529193600000,1529798400000,1530403200000,1531008000000,1531612800000,1532217600000,1532822400000,1533427200000,1534032000000,1534636800000,1535241600000,1535846400000,1536451200000,1537056000000,1537660800000,1538265600000,1538870400000,1539475200000,1540080000000,1540684800000,1541289600000,1541894400000,1542499200000,1543104000000,1543708800000,1544313600000,1544918400000,1545523200000,1546128000000,1546732800000,1547337600000,1547942400000,1548547200000,1549152000000,1549756800000,1550361600000,1550966400000,1551571200000,1552176000000,1552780800000,1553385600000,1553990400000,1554595200000,1555200000000,1555804800000,1556409600000,1557014400000,1557619200000,1558224000000,1558828800000,1559433600000,1560038400000,1560643200000,1561248000000,1561852800000,1562457600000,1563062400000,1563667200000,1564272000000,1564876800000,1565481600000,1566086400000,1566691200000,1567296000000,1567900800000,1568505600000,1569110400000,1569715200000,1570320000000,1570924800000,1571529600000,1572134400000,1572739200000,1573344000000,1573948800000],"nodeOverTime":[{"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"seedFlow":null,"syntheticLoopFlow":null},{"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"seedFlow":null,"syntheticLoopFlow":null},{"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"seedFlow":null,"syntheticLoopFlow":null},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864.2115904313977],"seedFlow":null,"syntheticLoopFlow":null},{"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.08229588100335,36.500508836926,18.248032401849635,9.121802075137694,4.55871456274136,2.277222545959448,1.1365754419466514,0.5664325520175447,0.281666433875728,48.15606434473354,40.08052463555836,20.041695757669125,23.48982867253736,11.710819502514479,5.843416817383508,2.7270240858618155],"seedFlow":null,"syntheticLoopFlow":null},{"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.117942374064043,11.599612324422548,5.802028405066731,2.9032283853656993,1.4538006817186095,0.7290350798263235,0.3665533718356815,0.18513185509624583,0.0941157697367867,0.03182675709208116,0.013420915357494331,0.005277017789481313,2.533657715192099,1.300923691350296,0.6624547795488911,0.3143212812066306],"seedFlow":null,"syntheticLoopFlow":null},{"cred":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.00000001131642,16.000000005701803,8.000000002852337,4.000000001426214,2.0000000007131087,1.0000000003565543,0.5000000001782772,0.2500000000891386,0.1250000000445693,0.06250000002228465,0.03125000001114232,0.01562500000557116,0.00781250000278558,0.00390625000139279,0.001953125000696395,0.0009765625003481976,0.0004882812501740988,0.000005885557697513402,9.089639964805361e-7,2.2823990707618322e-7,5.707474213425337e-8,1.432909825053719e-8,3.608762421874854e-9,9.149341897630789e-10,2.348429978908058e-10,6.180204758560283e-11,1.1535423547806974e-11,2.724066490732819e-12,6.82214583420928e-13,1.8724224634421185e-13,4.6798189373004e-14,1.1730625827675222e-14,2.7631709107473555e-15],"seedFlow":null,"syntheticLoopFlow":null},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{"cred":[9.964412806682837,4.981955257329389,5.491477850252737,4.767272434895863,2.383691433744795,1.1919022420821395,0.5960111799878318,0.29807199372197263,0.14911279715073825,2.9893671445152354,1.5028103108200466,0.7569890996491149,0.3816004728774662,0.19214683255432766,0.09651221711467625,0.03643300088087674,0.017911108410865153,0.5039168817648663,0.2515446542905307,0.1254859311713519,0.0625929239108984,0.03125394212589924,0.015643731028961383,0.007859704971617735,0.003968586717210518,0.0020152399575003054,0.2320615233965388,0.11843317241177595,2.478916797039998,1.2554605461732404,0.6278819725342536,0.31407214713260984,0.15716084294928911,0.07870198515162928,0.03946873945127176,0.01984562823539794,0.01002289453676102,0.00509397808303507,0.0026062497971946893,0.0013382443205243108,0.0006856970230950347,0.00034909416290180347,0.0001766932756084404,0.0000893078811352669,0.00004519803089654089,0.000022866558756913162,0.000011536829406986189,0.000005028483459842613,0.0000025093967347794807,0.0000012532127947460712,6.266147941013718e-7,3.1305152891929555e-7,1.5684400448209903e-7,7.822377906804695e-8,3.940741092920162e-8,1.9473556269906007e-8,9.93073565589365e-9,1.2822068590571202e-11,3.492882385917114e-13,1.0567219292203183e-14,4.906787001961001e-16,5.1745108104340604e-17,1.2665654793568439e-17,3.2487897313709546e-18,8.391015975205313e-19,2.263988148073925e-19,6.507596121482475e-20,2.0510149096657124e-20,7.246738129557673e-21,2.8708420657819932e-21,1.2471600384006662e-21,5.764971058404004e-22,2.764753350819431e-22,1.352934751818254e-22,1.6382277350202986e-24,2.4776113178880667e-25,6.20397991041513e-26,1.5491767716354687e-26,3.886624798493964e-27,9.784989390208872e-28,2.480367652859069e-28,6.365986830589219e-29,1.6752208349529377e-29,3.1267563383719516e-30,7.383678548979617e-31,1.8491567411787323e-31,5.07522552598162e-32,1.2684693106327504e-32,3.179594966960949e-33,7.48959302360735e-34],"seedFlow":null,"syntheticLoopFlow":null},{"cred":[3.0355871933171628,1.5180447426706114,0.758522149747263,0.35772756510413695,0.17880856625520503,0.08934775791786041,0.04461382001216829,0.02224050627802738,0.011043452849261753,0.5907109804847651,0.2872287516799533,0.1380304316008853,0.06590929274753382,0.03160805025817233,0.01536522429157375,0.5195057198222482,0.2600582519406973,0.6350677984109149,0.31794768579736005,0.1592602388725934,0.07978016111107428,0.039932600385087086,0.01994954022653178,0.009936930656128846,0.004929731096662773,0.0024339189494363396,0.27016305605692953,0.13267911731495818,3.6466393478233696,1.807317526258443,0.9035070636815883,0.45162237097531105,0.22568641610467133,0.11272164437535097,0.05624307531221834,0.028010279146347117,0.013905059154111506,0.006869998762401194,0.003375738625523442,0.0016527498908347552,0.0008098000825844982,0.00039865438993796296,0.00019718100081144284,0.00009762925707467471,0.00004827053820842992,0.000023867725795572247,0.000011830312869256514,0.000006655087678278739,0.000003332388834281196,0.0000016676799897842666,8.338315981637971e-7,4.171716672132889e-7,2.0826759358419323e-7,1.0433201996509918e-7,5.1870488587371434e-8,2.6165393488380526e-8,1.2888739223249615e-8,8.04939141574632e-11,2.718043565816994e-12,8.889367764770289e-14,3.019908744017573e-15,7.305520639252103e-17,1.2973598613354522e-17,3.2692980381726054e-18,8.413450567275936e-19,2.2669043095415683e-19,6.511746026108073e-20,2.0516672368007957e-20,7.247889948247781e-21,2.8710702747011715e-21,1.247209601611556e-21,5.765085626262077e-22,2.764780835722178e-22,1.3529414788138387e-22,1.6382570680287922e-24,2.4776145467208013e-25,6.203983994979385e-26,1.549177265335096e-26,3.88662542343509e-27,9.784990191445333e-28,2.4803677581012156e-28,6.365986973661637e-29,1.6752208562135294e-29,3.1267563679202625e-30,7.383678589415221e-31,1.8491567490481679e-31,5.075225544164356e-32,1.268469314793996e-32,3.179594976907347e-33,7.489593046468724e-34],"seedFlow":null,"syntheticLoopFlow":null}],"nodeSummaries":[{"cred":0,"seedFlow":0,"syntheticLoopFlow":0},{"cred":0,"seedFlow":0,"syntheticLoopFlow":0},{"cred":0,"seedFlow":0,"syntheticLoopFlow":0},{"cred":13.799131736650672,"seedFlow":1.7972856683009701,"syntheticLoopFlow":0.06037719319841893},{"cred":105.54106857856077,"seedFlow":105.34066110345462,"syntheticLoopFlow":0.20039962323537883},{"cred":105.54106857856077,"seedFlow":105.34066110345462,"syntheticLoopFlow":0.20039962323537883},{"cred":169.68957138653698,"seedFlow":143.78285346407762,"syntheticLoopFlow":0.20904716480612162},{"cred":143.90462364827238,"seedFlow":143.78285346407762,"syntheticLoopFlow":0.1217706566209246},{"cred":154.94512327710902,"seedFlow":143.78285346407762,"syntheticLoopFlow":0.1301520087959158},{"cred":143.90462364827238,"seedFlow":143.78285346407762,"syntheticLoopFlow":0.1217706566209246},{"cred":155.16578931426736,"seedFlow":141.14299905601573,"syntheticLoopFlow":2.1439835881790583},{"cred":112.38597911003878,"seedFlow":112.29672265973298,"syntheticLoopFlow":0.08925645030580694},{"cred":121.01668655027022,"seedFlow":112.29672265973298,"syntheticLoopFlow":0.09606618687383685},{"cred":112.35874016376667,"seedFlow":112.29672265973298,"syntheticLoopFlow":0.06201750403368492},{"cred":110.99145110120922,"seedFlow":110.91429153746392,"syntheticLoopFlow":0.07715956374527272},{"cred":113.46108180066898,"seedFlow":113.42918880235267,"syntheticLoopFlow":0.031892998316301414},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":145.46700684141757,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.03229729281559005},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.31729690990165,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.008812622526122641},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":57.32121102161657,"seedFlow":57.308484287375535,"syntheticLoopFlow":0.012726734241033875},{"cred":2.9133942269491206,"seedFlow":0,"syntheticLoopFlow":0.003965597072070186},{"cred":10.282814204348677,"seedFlow":0,"syntheticLoopFlow":0.015364836853522915},{"cred":5.734554783791321,"seedFlow":0,"syntheticLoopFlow":0.00682298603205974},{"cred":3.1146680016191826,"seedFlow":0,"syntheticLoopFlow":0.00275263193044842},{"cred":5.511750176697887,"seedFlow":0,"syntheticLoopFlow":0.004875145187792937},{"cred":10.64825543672676,"seedFlow":0,"syntheticLoopFlow":0.018165537171355706},{"cred":1.8898857417021353,"seedFlow":0,"syntheticLoopFlow":0.0009939115787390479},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":26.07523021251323,"seedFlow":0,"syntheticLoopFlow":0.006512295257870439},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":1.5912391925149774,"seedFlow":0,"syntheticLoopFlow":0.0003974123857430014},{"cred":2.9133942269491206,"seedFlow":0,"syntheticLoopFlow":0.003965597072070186},{"cred":864.2115904313977,"seedFlow":0,"syntheticLoopFlow":216.05289760784942},{"cred":264.8226245477156,"seedFlow":0,"syntheticLoopFlow":66.2056561369289},{"cred":52.11333040466965,"seedFlow":0,"syntheticLoopFlow":1.0868712223218244},{"cred":63.99951884047379,"seedFlow":0,"syntheticLoopFlow":15.999879710118448},{"cred":10.197308728652022,"seedFlow":9.59488444629996,"syntheticLoopFlow":0.023562116212019667},{"cred":10.67578203838194,"seedFlow":9.59488444629996,"syntheticLoopFlow":0.01672261173330248},{"cred":10.430126392956392,"seedFlow":9.59488444629996,"syntheticLoopFlow":0.023816681821396173},{"cred":10.213644104116863,"seedFlow":9.59488444629996,"syntheticLoopFlow":0.016641183098222153},{"cred":9.0217540651876,"seedFlow":8.316894575689037,"syntheticLoopFlow":0.004960369095280274},{"cred":9.0217540651876,"seedFlow":8.316894575689037,"syntheticLoopFlow":0.004960369095280274},{"cred":9.954568368024946,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.010136790395330636},{"cred":9.954568368024946,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.010136790395330636},{"cred":9.954568368024946,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.010136790395330636},{"cred":9.954568368024946,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.010136790395330636},{"cred":9.951229140875329,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.006797843344887712},{"cred":9.95716813624192,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.012736492658563418},{"cred":9.243118350863002,"seedFlow":8.316894575689037,"syntheticLoopFlow":0.00704614234940153},{"cred":9.99379673788416,"seedFlow":8.316894575689037,"syntheticLoopFlow":0.007565559627589248},{"cred":9.897985958302884,"seedFlow":9.474932223704151,"syntheticLoopFlow":0.009038567411233687},{"cred":1707.3744182143303,"seedFlow":1600.7686868508324,"syntheticLoopFlow":0.295180592133638},{"cred":9.751142851162692,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.005446063491358324},{"cred":9.565668073181605,"seedFlow":8.779906655151377,"syntheticLoopFlow":0.16165964690900936},{"cred":11.973573712889147,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.48895171561764456},{"cred":10.635175252028025,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.006222043283384551},{"cred":9.617666890579967,"seedFlow":9.59488444629996,"syntheticLoopFlow":0.022781921885678364},{"cred":10.145628531792658,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.006746617227338519},{"cred":9.918862832132406,"seedFlow":9.59488444629996,"syntheticLoopFlow":0.016382808634881365},{"cred":10.515007261295507,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.4222183637544035},{"cred":10.515007261295507,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.4222183637544035},{"cred":21.416639165018804,"seedFlow":16.783616469233184,"syntheticLoopFlow":0.08081896810154053},{"cred":26.287389697368248,"seedFlow":23.96871072458402,"syntheticLoopFlow":0.21066010096851442},{"cred":27.91094008467795,"seedFlow":19.18976889259992,"syntheticLoopFlow":0.031396856562791994},{"cred":19.784832911254483,"seedFlow":19.18976889259992,"syntheticLoopFlow":0.024810022848935763},{"cred":20.072017473896224,"seedFlow":19.18976889259992,"syntheticLoopFlow":0.03291635330377497},{"cred":29.139575718276994,"seedFlow":16.783616469233184,"syntheticLoopFlow":0.18504295403483498},{"cred":19.311186841648905,"seedFlow":16.783616469233184,"syntheticLoopFlow":0.013745657054751677},{"cred":235.7563415116915,"seedFlow":16.633789151378075,"syntheticLoopFlow":0.3004002418895929},{"cred":17.523850406531633,"seedFlow":16.246162106203176,"syntheticLoopFlow":0.013748806188554487},{"cred":17.523850406531633,"seedFlow":16.246162106203176,"syntheticLoopFlow":0.013748806188554487},{"cred":39.06509799371249,"seedFlow":33.56723293846637,"syntheticLoopFlow":0.0504531684027936},{"cred":42.27477190468236,"seedFlow":33.56723293846637,"syntheticLoopFlow":0.09028987453349271},{"cred":0.7307930385286521,"seedFlow":0,"syntheticLoopFlow":0.046678285900648764},{"cred":60.23833078157025,"seedFlow":33.56723293846637,"syntheticLoopFlow":0.10382883055582441},{"cred":12.088152025261927,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.12482863945284257},{"cred":9.538610946693161,"seedFlow":8.391808234616592,"syntheticLoopFlow":0.008106918793094517},{"cred":214.65173419974133,"seedFlow":0,"syntheticLoopFlow":0.14595960031173968},{"cred":42.14441492823704,"seedFlow":0,"syntheticLoopFlow":0.05614557180268618},{"cred":16.855585049039963,"seedFlow":0,"syntheticLoopFlow":0.06105709263522425}]},"params":{"alpha":0.75,"intervalDecay":0.5},"plugins":[{"type":"sourcecred/pluginDeclarations","version":"0.1.0"},[{"edgePrefix":"E\u0000sourcecred\u0000discourse\u0000","edgeTypes":[{"backwardName":"post replied to by","defaultWeight":{"backwards":0,"forwards":0.5},"description":"Connects a post to the post that it is a reply to.","forwardName":"post is reply to","prefix":"E\u0000sourcecred\u0000discourse\u0000replyTo\u0000"},{"backwardName":"topic is authored by","defaultWeight":{"backwards":1,"forwards":0},"description":"Connects an author to a topic they created.","forwardName":"authors topic","prefix":"E\u0000sourcecred\u0000discourse\u0000authors\u0000topic\u0000"},{"backwardName":"post is authored by","defaultWeight":{"backwards":1,"forwards":0},"description":"Connects an author to a post they've created.","forwardName":"authors post","prefix":"E\u0000sourcecred\u0000discourse\u0000authors\u0000post\u0000"},{"backwardName":"is contained by topic","defaultWeight":{"backwards":0.125,"forwards":0},"description":"Connects a topic to the posts that it contains.","forwardName":"contains post","prefix":"E\u0000sourcecred\u0000discourse\u0000topicContainsPost\u0000"},{"backwardName":"is liked by","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects a Discourse like to a post that was liked.","forwardName":"likes","prefix":"E\u0000sourcecred\u0000discourse\u0000likes\u0000"},{"backwardName":"like created by","defaultWeight":{"backwards":0,"forwards":1},"description":"Connects a Discourse user to a like that they created.","forwardName":"creates like","prefix":"E\u0000sourcecred\u0000discourse\u0000createsLike\u0000"},{"backwardName":"post is referenced by","defaultWeight":{"backwards":0,"forwards":0.5},"description":"Connects a Discourse post to another post it referenced.","forwardName":"references post","prefix":"E\u0000sourcecred\u0000discourse\u0000references\u0000post\u0000"},{"backwardName":"topic is referenced by","defaultWeight":{"backwards":0,"forwards":0.5},"description":"Connects a Discourse post to a topic it referenced.","forwardName":"references topic","prefix":"E\u0000sourcecred\u0000discourse\u0000references\u0000topic\u0000"},{"backwardName":"is mentioned by","defaultWeight":{"backwards":0,"forwards":0.25},"description":"Connects a Discourse post to a user it mentions","forwardName":"mentions","prefix":"E\u0000sourcecred\u0000discourse\u0000references\u0000user\u0000"}],"name":"Discourse","nodePrefix":"N\u0000sourcecred\u0000discourse\u0000","nodeTypes":[{"defaultWeight":0,"description":"A user account on a particular Discourse instance.","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000discourse\u0000user\u0000"},{"defaultWeight":0,"description":"A topic (or post-container) in a Discourse instance. Every topic has at least one post.","name":"Topic","pluralName":"Topics","prefix":"N\u0000sourcecred\u0000discourse\u0000topic\u0000"},{"defaultWeight":0,"description":"A post in some topic in a Discourse instance.","name":"Post","pluralName":"Posts","prefix":"N\u0000sourcecred\u0000discourse\u0000post\u0000"},{"defaultWeight":4,"description":"A like by some user, directed at some post","name":"Like","pluralName":"Likes","prefix":"N\u0000sourcecred\u0000discourse\u0000like\u0000"}],"userTypes":[{"defaultWeight":0,"description":"A user account on a particular Discourse instance.","name":"User","pluralName":"Users","prefix":"N\u0000sourcecred\u0000discourse\u0000user\u0000"}]},{"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":0,"description":"NodeType for a GitHub repository","name":"Repository","pluralName":"Repositories","prefix":"N\u0000sourcecred\u0000github\u0000REPO\u0000"},{"defaultWeight":0,"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":0,"description":"NodeType for a GitHub comment","name":"Comment","pluralName":"Comments","prefix":"N\u0000sourcecred\u0000github\u0000COMMENT\u0000"},{"defaultWeight":0,"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\u0000core\u0000IDENTITY\u0000","edgeTypes":[],"name":"Identity","nodePrefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000","nodeTypes":[{"defaultWeight":0,"description":"a canonical user identity","name":"user","pluralName":"users","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000"},{"defaultWeight":0,"description":"a canonical project identity","name":"project","pluralName":"projects","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000PROJECT\u0000"},{"defaultWeight":0,"description":"a canonical organization identity","name":"organization","pluralName":"organizations","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000ORGANIZATION\u0000"},{"defaultWeight":0,"description":"a canonical bot identity","name":"bot","pluralName":"bots","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000BOT\u0000"}],"userTypes":[{"defaultWeight":0,"description":"a canonical user identity","name":"user","pluralName":"users","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000USER\u0000"},{"defaultWeight":0,"description":"a canonical project identity","name":"project","pluralName":"projects","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000PROJECT\u0000"},{"defaultWeight":0,"description":"a canonical organization identity","name":"organization","pluralName":"organizations","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000ORGANIZATION\u0000"},{"defaultWeight":0,"description":"a canonical bot identity","name":"bot","pluralName":"bots","prefix":"N\u0000sourcecred\u0000core\u0000IDENTITY\u0000BOT\u0000"}]}]],"weightedGraph":[{"type":"sourcecred/weightedGraph","version":"0.1.0"},{"graphJSON":[{"type":"sourcecred/graph","version":"0.8.0"},{"edges":[{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","32"],"dstIndex":16,"srcIndex":112,"timestampMs":1573839531354},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","33"],"dstIndex":17,"srcIndex":112,"timestampMs":1573839624599},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","34"],"dstIndex":18,"srcIndex":112,"timestampMs":1573839733554},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","35"],"dstIndex":19,"srcIndex":112,"timestampMs":1573839810871},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","36"],"dstIndex":20,"srcIndex":112,"timestampMs":1573839814701},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","37"],"dstIndex":21,"srcIndex":112,"timestampMs":1573839818330},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","38"],"dstIndex":22,"srcIndex":112,"timestampMs":1573839821821},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","39"],"dstIndex":23,"srcIndex":112,"timestampMs":1573839825601},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","40"],"dstIndex":24,"srcIndex":112,"timestampMs":1573839828825},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","41"],"dstIndex":25,"srcIndex":112,"timestampMs":1573839832023},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","42"],"dstIndex":26,"srcIndex":112,"timestampMs":1573839835298},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","43"],"dstIndex":27,"srcIndex":112,"timestampMs":1573839840261},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","44"],"dstIndex":28,"srcIndex":112,"timestampMs":1573839843418},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","45"],"dstIndex":29,"srcIndex":112,"timestampMs":1573839846537},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","46"],"dstIndex":30,"srcIndex":112,"timestampMs":1573839849459},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","47"],"dstIndex":31,"srcIndex":112,"timestampMs":1573839852186},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","48"],"dstIndex":32,"srcIndex":112,"timestampMs":1573839855068},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","49"],"dstIndex":33,"srcIndex":112,"timestampMs":1573839857787},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","50"],"dstIndex":34,"srcIndex":112,"timestampMs":1573839860730},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","51"],"dstIndex":35,"srcIndex":112,"timestampMs":1573839863576},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","52"],"dstIndex":36,"srcIndex":112,"timestampMs":1573839866548},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","53"],"dstIndex":37,"srcIndex":112,"timestampMs":1573839869555},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","54"],"dstIndex":38,"srcIndex":112,"timestampMs":1573839872244},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","55"],"dstIndex":39,"srcIndex":112,"timestampMs":1573840159198},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","56"],"dstIndex":40,"srcIndex":112,"timestampMs":1573840233231},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","57"],"dstIndex":41,"srcIndex":112,"timestampMs":1573840310550},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","58"],"dstIndex":42,"srcIndex":112,"timestampMs":1573840335123},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","59"],"dstIndex":43,"srcIndex":112,"timestampMs":1573840348410},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","60"],"dstIndex":44,"srcIndex":112,"timestampMs":1573840354669},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","61"],"dstIndex":45,"srcIndex":112,"timestampMs":1573840360335},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","62"],"dstIndex":46,"srcIndex":112,"timestampMs":1573840366708},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","63"],"dstIndex":47,"srcIndex":112,"timestampMs":1573840372677},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","64"],"dstIndex":48,"srcIndex":112,"timestampMs":1573840428729},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","65"],"dstIndex":49,"srcIndex":112,"timestampMs":1573840450294},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","66"],"dstIndex":50,"srcIndex":112,"timestampMs":1573840464212},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","67"],"dstIndex":51,"srcIndex":112,"timestampMs":1573840469806},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","68"],"dstIndex":52,"srcIndex":112,"timestampMs":1573840474450},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","69"],"dstIndex":53,"srcIndex":112,"timestampMs":1573840480604},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","70"],"dstIndex":54,"srcIndex":112,"timestampMs":1573840486299},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","71"],"dstIndex":55,"srcIndex":112,"timestampMs":1573840496395},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","72"],"dstIndex":56,"srcIndex":112,"timestampMs":1573840503032},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","73"],"dstIndex":57,"srcIndex":112,"timestampMs":1573840509355},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","74"],"dstIndex":58,"srcIndex":112,"timestampMs":1573840516283},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","75"],"dstIndex":59,"srcIndex":112,"timestampMs":1573840525734},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","76"],"dstIndex":60,"srcIndex":112,"timestampMs":1573840532029},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","77"],"dstIndex":61,"srcIndex":112,"timestampMs":1573840538301},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","78"],"dstIndex":62,"srcIndex":112,"timestampMs":1573840544868},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","79"],"dstIndex":63,"srcIndex":112,"timestampMs":1573840551728},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","80"],"dstIndex":64,"srcIndex":112,"timestampMs":1573840562068},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","81"],"dstIndex":65,"srcIndex":112,"timestampMs":1573840567788},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","82"],"dstIndex":66,"srcIndex":112,"timestampMs":1573840574181},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","83"],"dstIndex":67,"srcIndex":112,"timestampMs":1573840580352},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","84"],"dstIndex":68,"srcIndex":112,"timestampMs":1573840590166},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","beanow.sc-test","85"],"dstIndex":69,"srcIndex":112,"timestampMs":1573840598964},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","14"],"dstIndex":6,"srcIndex":113,"timestampMs":1564744349476},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","18"],"dstIndex":9,"srcIndex":113,"timestampMs":1564744591313},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","22"],"dstIndex":10,"srcIndex":113,"timestampMs":1564951839667},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","25"],"dstIndex":11,"srcIndex":113,"timestampMs":1570049410625},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","26"],"dstIndex":12,"srcIndex":113,"timestampMs":1570049491743},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","27"],"dstIndex":13,"srcIndex":113,"timestampMs":1570049836311},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","28"],"dstIndex":14,"srcIndex":113,"timestampMs":1570420159922},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","d11","29"],"dstIndex":15,"srcIndex":113,"timestampMs":1571855191281},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","dl-proto","16"],"dstIndex":7,"srcIndex":114,"timestampMs":1564744496285},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","dl-proto","17"],"dstIndex":8,"srcIndex":114,"timestampMs":1564744553905},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","system","1"],"dstIndex":4,"srcIndex":115,"timestampMs":1554236409844},{"address":["sourcecred","discourse","authors","post","https://sourcecred-test.discourse.group","system","10"],"dstIndex":5,"srcIndex":115,"timestampMs":1554236412933},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","24"],"dstIndex":77,"srcIndex":112,"timestampMs":1573839531345},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","25"],"dstIndex":78,"srcIndex":112,"timestampMs":1573839624590},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","26"],"dstIndex":79,"srcIndex":112,"timestampMs":1573839733506},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","27"],"dstIndex":80,"srcIndex":112,"timestampMs":1573840159140},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","28"],"dstIndex":81,"srcIndex":112,"timestampMs":1573840233177},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","29"],"dstIndex":82,"srcIndex":112,"timestampMs":1573840310488},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","30"],"dstIndex":83,"srcIndex":112,"timestampMs":1573840335060},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","31"],"dstIndex":84,"srcIndex":112,"timestampMs":1573840348348},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","32"],"dstIndex":85,"srcIndex":112,"timestampMs":1573840354599},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","33"],"dstIndex":86,"srcIndex":112,"timestampMs":1573840360253},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","34"],"dstIndex":87,"srcIndex":112,"timestampMs":1573840366625},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","35"],"dstIndex":88,"srcIndex":112,"timestampMs":1573840372613},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","36"],"dstIndex":89,"srcIndex":112,"timestampMs":1573840428677},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","37"],"dstIndex":90,"srcIndex":112,"timestampMs":1573840450242},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","38"],"dstIndex":91,"srcIndex":112,"timestampMs":1573840464152},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","39"],"dstIndex":92,"srcIndex":112,"timestampMs":1573840469748},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","40"],"dstIndex":93,"srcIndex":112,"timestampMs":1573840474386},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","41"],"dstIndex":94,"srcIndex":112,"timestampMs":1573840480538},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","42"],"dstIndex":95,"srcIndex":112,"timestampMs":1573840486242},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","43"],"dstIndex":96,"srcIndex":112,"timestampMs":1573840496337},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","44"],"dstIndex":97,"srcIndex":112,"timestampMs":1573840502978},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","45"],"dstIndex":98,"srcIndex":112,"timestampMs":1573840509297},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","46"],"dstIndex":99,"srcIndex":112,"timestampMs":1573840516235},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","47"],"dstIndex":100,"srcIndex":112,"timestampMs":1573840525656},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","48"],"dstIndex":101,"srcIndex":112,"timestampMs":1573840531935},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","49"],"dstIndex":102,"srcIndex":112,"timestampMs":1573840538246},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","50"],"dstIndex":103,"srcIndex":112,"timestampMs":1573840544797},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","51"],"dstIndex":104,"srcIndex":112,"timestampMs":1573840551656},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","52"],"dstIndex":105,"srcIndex":112,"timestampMs":1573840562010},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","53"],"dstIndex":106,"srcIndex":112,"timestampMs":1573840567727},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","54"],"dstIndex":107,"srcIndex":112,"timestampMs":1573840574124},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","55"],"dstIndex":108,"srcIndex":112,"timestampMs":1573840580295},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","56"],"dstIndex":109,"srcIndex":112,"timestampMs":1573840590101},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","beanow.sc-test","57"],"dstIndex":110,"srcIndex":112,"timestampMs":1573840598902},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","11"],"dstIndex":71,"srcIndex":113,"timestampMs":1564744349408},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","18"],"dstIndex":73,"srcIndex":113,"timestampMs":1570049410568},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","19"],"dstIndex":74,"srcIndex":113,"timestampMs":1570049491690},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","20"],"dstIndex":75,"srcIndex":113,"timestampMs":1570420159868},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","d11","21"],"dstIndex":76,"srcIndex":113,"timestampMs":1571855191140},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","dl-proto","13"],"dstIndex":72,"srcIndex":114,"timestampMs":1564744553843},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","system","1"],"dstIndex":70,"srcIndex":115,"timestampMs":1554236409674},{"address":["sourcecred","discourse","authors","topic","https://sourcecred-test.discourse.group","system","7"],"dstIndex":111,"srcIndex":115,"timestampMs":1554236412879},{"address":["sourcecred","discourse","createsLike","https://sourcecred-test.discourse.group","dl-proto","14"],"dstIndex":3,"srcIndex":114,"timestampMs":1564744498189},{"address":["sourcecred","discourse","likes","https://sourcecred-test.discourse.group","dl-proto","14"],"dstIndex":6,"srcIndex":3,"timestampMs":1564744498189},{"address":["sourcecred","discourse","references","post","https://sourcecred-test.discourse.group","17","22"],"dstIndex":10,"srcIndex":8,"timestampMs":1564744553905},{"address":["sourcecred","discourse","references","topic","https://sourcecred-test.discourse.group","29","20"],"dstIndex":75,"srcIndex":15,"timestampMs":1571855191281},{"address":["sourcecred","discourse","references","user","https://sourcecred-test.discourse.group","29","dl-proto"],"dstIndex":114,"srcIndex":15,"timestampMs":1571855191281},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","16","14"],"dstIndex":6,"srcIndex":7,"timestampMs":1564744496285},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","18","17"],"dstIndex":8,"srcIndex":9,"timestampMs":1564744591313},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","22","14"],"dstIndex":6,"srcIndex":10,"timestampMs":1564951839667},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","27","26"],"dstIndex":12,"srcIndex":13,"timestampMs":1570049836311},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","35","34"],"dstIndex":18,"srcIndex":19,"timestampMs":1573839810871},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","36","34"],"dstIndex":18,"srcIndex":20,"timestampMs":1573839814701},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","37","34"],"dstIndex":18,"srcIndex":21,"timestampMs":1573839818330},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","38","34"],"dstIndex":18,"srcIndex":22,"timestampMs":1573839821821},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","39","34"],"dstIndex":18,"srcIndex":23,"timestampMs":1573839825601},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","40","34"],"dstIndex":18,"srcIndex":24,"timestampMs":1573839828825},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","41","34"],"dstIndex":18,"srcIndex":25,"timestampMs":1573839832023},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","42","34"],"dstIndex":18,"srcIndex":26,"timestampMs":1573839835298},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","43","34"],"dstIndex":18,"srcIndex":27,"timestampMs":1573839840261},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","44","34"],"dstIndex":18,"srcIndex":28,"timestampMs":1573839843418},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","45","34"],"dstIndex":18,"srcIndex":29,"timestampMs":1573839846537},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","46","34"],"dstIndex":18,"srcIndex":30,"timestampMs":1573839849459},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","47","34"],"dstIndex":18,"srcIndex":31,"timestampMs":1573839852186},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","48","34"],"dstIndex":18,"srcIndex":32,"timestampMs":1573839855068},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","49","34"],"dstIndex":18,"srcIndex":33,"timestampMs":1573839857787},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","50","34"],"dstIndex":18,"srcIndex":34,"timestampMs":1573839860730},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","51","34"],"dstIndex":18,"srcIndex":35,"timestampMs":1573839863576},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","52","34"],"dstIndex":18,"srcIndex":36,"timestampMs":1573839866548},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","53","34"],"dstIndex":18,"srcIndex":37,"timestampMs":1573839869555},{"address":["sourcecred","discourse","replyTo","https://sourcecred-test.discourse.group","54","34"],"dstIndex":18,"srcIndex":38,"timestampMs":1573839872244},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","1","1"],"dstIndex":4,"srcIndex":70,"timestampMs":1554236409844},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","11","14"],"dstIndex":6,"srcIndex":71,"timestampMs":1564744349476},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","11","16"],"dstIndex":7,"srcIndex":71,"timestampMs":1564744496285},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","11","22"],"dstIndex":10,"srcIndex":71,"timestampMs":1564951839667},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","13","17"],"dstIndex":8,"srcIndex":72,"timestampMs":1564744553905},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","13","18"],"dstIndex":9,"srcIndex":72,"timestampMs":1564744591313},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","18","25"],"dstIndex":11,"srcIndex":73,"timestampMs":1570049410625},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","19","26"],"dstIndex":12,"srcIndex":74,"timestampMs":1570049491743},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","19","27"],"dstIndex":13,"srcIndex":74,"timestampMs":1570049836311},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","20","28"],"dstIndex":14,"srcIndex":75,"timestampMs":1570420159922},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","21","29"],"dstIndex":15,"srcIndex":76,"timestampMs":1571855191281},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","24","32"],"dstIndex":16,"srcIndex":77,"timestampMs":1573839531354},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","25","33"],"dstIndex":17,"srcIndex":78,"timestampMs":1573839624599},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","34"],"dstIndex":18,"srcIndex":79,"timestampMs":1573839733554},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","35"],"dstIndex":19,"srcIndex":79,"timestampMs":1573839810871},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","36"],"dstIndex":20,"srcIndex":79,"timestampMs":1573839814701},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","37"],"dstIndex":21,"srcIndex":79,"timestampMs":1573839818330},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","38"],"dstIndex":22,"srcIndex":79,"timestampMs":1573839821821},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","39"],"dstIndex":23,"srcIndex":79,"timestampMs":1573839825601},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","40"],"dstIndex":24,"srcIndex":79,"timestampMs":1573839828825},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","41"],"dstIndex":25,"srcIndex":79,"timestampMs":1573839832023},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","42"],"dstIndex":26,"srcIndex":79,"timestampMs":1573839835298},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","43"],"dstIndex":27,"srcIndex":79,"timestampMs":1573839840261},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","44"],"dstIndex":28,"srcIndex":79,"timestampMs":1573839843418},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","45"],"dstIndex":29,"srcIndex":79,"timestampMs":1573839846537},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","46"],"dstIndex":30,"srcIndex":79,"timestampMs":1573839849459},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","47"],"dstIndex":31,"srcIndex":79,"timestampMs":1573839852186},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","48"],"dstIndex":32,"srcIndex":79,"timestampMs":1573839855068},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","49"],"dstIndex":33,"srcIndex":79,"timestampMs":1573839857787},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","50"],"dstIndex":34,"srcIndex":79,"timestampMs":1573839860730},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","51"],"dstIndex":35,"srcIndex":79,"timestampMs":1573839863576},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","52"],"dstIndex":36,"srcIndex":79,"timestampMs":1573839866548},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","53"],"dstIndex":37,"srcIndex":79,"timestampMs":1573839869555},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","26","54"],"dstIndex":38,"srcIndex":79,"timestampMs":1573839872244},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","27","55"],"dstIndex":39,"srcIndex":80,"timestampMs":1573840159198},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","28","56"],"dstIndex":40,"srcIndex":81,"timestampMs":1573840233231},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","29","57"],"dstIndex":41,"srcIndex":82,"timestampMs":1573840310550},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","30","58"],"dstIndex":42,"srcIndex":83,"timestampMs":1573840335123},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","31","59"],"dstIndex":43,"srcIndex":84,"timestampMs":1573840348410},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","32","60"],"dstIndex":44,"srcIndex":85,"timestampMs":1573840354669},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","33","61"],"dstIndex":45,"srcIndex":86,"timestampMs":1573840360335},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","34","62"],"dstIndex":46,"srcIndex":87,"timestampMs":1573840366708},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","35","63"],"dstIndex":47,"srcIndex":88,"timestampMs":1573840372677},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","36","64"],"dstIndex":48,"srcIndex":89,"timestampMs":1573840428729},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","37","65"],"dstIndex":49,"srcIndex":90,"timestampMs":1573840450294},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","38","66"],"dstIndex":50,"srcIndex":91,"timestampMs":1573840464212},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","39","67"],"dstIndex":51,"srcIndex":92,"timestampMs":1573840469806},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","40","68"],"dstIndex":52,"srcIndex":93,"timestampMs":1573840474450},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","41","69"],"dstIndex":53,"srcIndex":94,"timestampMs":1573840480604},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","42","70"],"dstIndex":54,"srcIndex":95,"timestampMs":1573840486299},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","43","71"],"dstIndex":55,"srcIndex":96,"timestampMs":1573840496395},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","44","72"],"dstIndex":56,"srcIndex":97,"timestampMs":1573840503032},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","45","73"],"dstIndex":57,"srcIndex":98,"timestampMs":1573840509355},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","46","74"],"dstIndex":58,"srcIndex":99,"timestampMs":1573840516283},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","47","75"],"dstIndex":59,"srcIndex":100,"timestampMs":1573840525734},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","48","76"],"dstIndex":60,"srcIndex":101,"timestampMs":1573840532029},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","49","77"],"dstIndex":61,"srcIndex":102,"timestampMs":1573840538301},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","50","78"],"dstIndex":62,"srcIndex":103,"timestampMs":1573840544868},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","51","79"],"dstIndex":63,"srcIndex":104,"timestampMs":1573840551728},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","52","80"],"dstIndex":64,"srcIndex":105,"timestampMs":1573840562068},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","53","81"],"dstIndex":65,"srcIndex":106,"timestampMs":1573840567788},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","54","82"],"dstIndex":66,"srcIndex":107,"timestampMs":1573840574181},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","55","83"],"dstIndex":67,"srcIndex":108,"timestampMs":1573840580352},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","56","84"],"dstIndex":68,"srcIndex":109,"timestampMs":1573840590166},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","57","85"],"dstIndex":69,"srcIndex":110,"timestampMs":1573840598964},{"address":["sourcecred","discourse","topicContainsPost","https://sourcecred-test.discourse.group","7","10"],"dstIndex":5,"srcIndex":111,"timestampMs":1554236412933},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","BOT","credbot","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmM0MzBiZDc0NDU1MTA1Zjc3MjE1ZWNlNTE5NDUwOTRjZWVlZTZjODY="],"dstIndex":144,"srcIndex":163,"timestampMs":1536788634000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","BOT","credbot","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","417104047"],"dstIndex":137,"srcIndex":163,"timestampMs":1535576390000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjBhMjIzMzQ2YjRlNmRlYzAxMjdiMWU2YWE4OTJjNGVlMDQyNGI2NmE="],"dstIndex":141,"srcIndex":164,"timestampMs":1519807427000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZkNWIzYWEzMWViYjY4YTA2Y2ViNDZiYmQ2Y2Y0OWI2Y2NkNmY1ZTY="],"dstIndex":143,"srcIndex":164,"timestampMs":1519878354000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjOTFhZGI3MThhNjA0NWI0OTIzMDNmMDBkOGU4YmViOTU3ZGM3ODA="],"dstIndex":145,"srcIndex":164,"timestampMs":1519807271000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjYzg4OWRjOTRjZjZkYTE3YWU2ZWFiNWJiN2I3MTU1ZjU3NzUxOWQ="],"dstIndex":146,"srcIndex":164,"timestampMs":1519807329000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":147,"srcIndex":164,"timestampMs":1519807088000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10"],"dstIndex":148,"srcIndex":164,"timestampMs":1530297021000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12"],"dstIndex":150,"srcIndex":164,"timestampMs":1536878086000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":151,"srcIndex":164,"timestampMs":1536878137000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":152,"srcIndex":164,"timestampMs":1519807129000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","4"],"dstIndex":153,"srcIndex":164,"timestampMs":1519807454000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","6"],"dstIndex":154,"srcIndex":164,"timestampMs":1521217624000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","7"],"dstIndex":155,"srcIndex":164,"timestampMs":1521569949000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","8"],"dstIndex":156,"srcIndex":164,"timestampMs":1521570243000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":157,"srcIndex":164,"timestampMs":1519807399000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":158,"srcIndex":164,"timestampMs":1519807636000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":159,"srcIndex":164,"timestampMs":1525373595000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813621"],"dstIndex":125,"srcIndex":164,"timestampMs":1536789965000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768703"],"dstIndex":126,"srcIndex":164,"timestampMs":1521217693000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768850"],"dstIndex":127,"srcIndex":164,"timestampMs":1521217725000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576185"],"dstIndex":128,"srcIndex":164,"timestampMs":1525137909000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576220"],"dstIndex":129,"srcIndex":164,"timestampMs":1525137925000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576248"],"dstIndex":130,"srcIndex":164,"timestampMs":1525137939000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576273"],"dstIndex":131,"srcIndex":164,"timestampMs":1525137951000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920"],"dstIndex":132,"srcIndex":164,"timestampMs":1525138231000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576936"],"dstIndex":133,"srcIndex":164,"timestampMs":1525138238000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768442"],"dstIndex":134,"srcIndex":164,"timestampMs":1521217642000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768538"],"dstIndex":135,"srcIndex":164,"timestampMs":1521217661000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","385223316"],"dstIndex":136,"srcIndex":164,"timestampMs":1524973307000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","3","369162222"],"dstIndex":138,"srcIndex":164,"timestampMs":1519807420000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10"],"dstIndex":148,"srcIndex":165,"timestampMs":1530297021000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","6","sourcecred","github","ISSUE","sourcecred-test","example-github","11"],"dstIndex":149,"srcIndex":165,"timestampMs":1536789479000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":159,"srcIndex":165,"timestampMs":1525373595000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],"dstIndex":161,"srcIndex":165,"timestampMs":1519878210000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100314038"],"dstIndex":162,"srcIndex":165,"timestampMs":1519878296000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813013"],"dstIndex":123,"srcIndex":165,"timestampMs":1536789813000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","5","396430464"],"dstIndex":139,"srcIndex":165,"timestampMs":1528764380000},{"address":["sourcecred","github","AUTHORS","5","sourcecred","github","USERLIKE","USER","wchargin","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":140,"srcIndex":165,"timestampMs":1519878210000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjBhMjIzMzQ2YjRlNmRlYzAxMjdiMWU2YWE4OTJjNGVlMDQyNGI2NmE="],"dstIndex":116,"srcIndex":141,"timestampMs":1519807427000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZiZDFiNGMwYjcxOWMyMmM2ODhhNzQ4NjNiZTA3YTY5OWI3YjliMzQ="],"dstIndex":117,"srcIndex":142,"timestampMs":1536806901000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZkNWIzYWEzMWViYjY4YTA2Y2ViNDZiYmQ2Y2Y0OWI2Y2NkNmY1ZTY="],"dstIndex":118,"srcIndex":143,"timestampMs":1519878354000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmM0MzBiZDc0NDU1MTA1Zjc3MjE1ZWNlNTE5NDUwOTRjZWVlZTZjODY="],"dstIndex":119,"srcIndex":144,"timestampMs":1536788634000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjOTFhZGI3MThhNjA0NWI0OTIzMDNmMDBkOGU4YmViOTU3ZGM3ODA="],"dstIndex":120,"srcIndex":145,"timestampMs":1519807271000},{"address":["sourcecred","github","CORRESPONDS_TO_COMMIT_TYPE","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjYzg4OWRjOTRjZjZkYTE3YWU2ZWFiNWJiN2I3MTU1ZjU3NzUxOWQ="],"dstIndex":121,"srcIndex":146,"timestampMs":1519807329000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":160,"srcIndex":147,"timestampMs":1519807088000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10"],"dstIndex":160,"srcIndex":148,"timestampMs":1530297021000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","11"],"dstIndex":160,"srcIndex":149,"timestampMs":1536789479000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12"],"dstIndex":160,"srcIndex":150,"timestampMs":1536878086000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":160,"srcIndex":151,"timestampMs":1536878137000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":160,"srcIndex":152,"timestampMs":1519807129000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","4"],"dstIndex":160,"srcIndex":153,"timestampMs":1519807454000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","6"],"dstIndex":160,"srcIndex":154,"timestampMs":1521217624000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","7"],"dstIndex":160,"srcIndex":155,"timestampMs":1521569949000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","ISSUE","sourcecred-test","example-github","8"],"dstIndex":160,"srcIndex":156,"timestampMs":1521570243000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":160,"srcIndex":157,"timestampMs":1519807399000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":160,"srcIndex":158,"timestampMs":1519807636000},{"address":["sourcecred","github","HAS_PARENT","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":160,"srcIndex":159,"timestampMs":1525373595000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],"dstIndex":158,"srcIndex":161,"timestampMs":1519878210000},{"address":["sourcecred","github","HAS_PARENT","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100314038"],"dstIndex":158,"srcIndex":162,"timestampMs":1519878296000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420811872"],"dstIndex":149,"srcIndex":122,"timestampMs":1536789545000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813013"],"dstIndex":149,"srcIndex":123,"timestampMs":1536789813000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813206"],"dstIndex":149,"srcIndex":124,"timestampMs":1536789858000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813621"],"dstIndex":149,"srcIndex":125,"timestampMs":1536789965000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768703"],"dstIndex":152,"srcIndex":126,"timestampMs":1521217693000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768850"],"dstIndex":152,"srcIndex":127,"timestampMs":1521217725000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576185"],"dstIndex":152,"srcIndex":128,"timestampMs":1525137909000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576220"],"dstIndex":152,"srcIndex":129,"timestampMs":1525137925000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576248"],"dstIndex":152,"srcIndex":130,"timestampMs":1525137939000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576273"],"dstIndex":152,"srcIndex":131,"timestampMs":1525137951000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920"],"dstIndex":152,"srcIndex":132,"timestampMs":1525138231000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576936"],"dstIndex":152,"srcIndex":133,"timestampMs":1525138238000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768442"],"dstIndex":154,"srcIndex":134,"timestampMs":1521217642000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768538"],"dstIndex":154,"srcIndex":135,"timestampMs":1521217661000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","385223316"],"dstIndex":154,"srcIndex":136,"timestampMs":1524973307000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","417104047"],"dstIndex":154,"srcIndex":137,"timestampMs":1535576390000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","3","369162222"],"dstIndex":157,"srcIndex":138,"timestampMs":1519807420000},{"address":["sourcecred","github","HAS_PARENT","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","5","396430464"],"dstIndex":158,"srcIndex":139,"timestampMs":1528764380000},{"address":["sourcecred","github","HAS_PARENT","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":161,"srcIndex":140,"timestampMs":1519878210000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":141,"srcIndex":157,"timestampMs":1519807427000},{"address":["sourcecred","github","MERGED_AS","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":143,"srcIndex":158,"timestampMs":1519878354000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":147,"srcIndex":164,"timestampMs":1536878100000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":151,"srcIndex":164,"timestampMs":1536878149000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":159,"srcIndex":164,"timestampMs":1536952427000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","5","396430464"],"dstIndex":139,"srcIndex":164,"timestampMs":1536952482000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","decentralion","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":140,"srcIndex":164,"timestampMs":1537294764000},{"address":["sourcecred","github","REACTS","HEART","5","sourcecred","github","USERLIKE","USER","wchargin","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":140,"srcIndex":165,"timestampMs":1537294762000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":151,"srcIndex":164,"timestampMs":1536878144000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813206"],"dstIndex":124,"srcIndex":164,"timestampMs":1536952420000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","decentralion","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":140,"srcIndex":164,"timestampMs":1537294761000},{"address":["sourcecred","github","REACTS","HOORAY","5","sourcecred","github","USERLIKE","USER","wchargin","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":140,"srcIndex":165,"timestampMs":1537294758000},{"address":["sourcecred","github","REACTS","ROCKET","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":151,"srcIndex":164,"timestampMs":1548353975000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12"],"dstIndex":150,"srcIndex":164,"timestampMs":1536878091000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","ISSUE","sourcecred-test","example-github","13"],"dstIndex":151,"srcIndex":164,"timestampMs":1536878140000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","6","sourcecred","github","PULL","sourcecred-test","example-github","9"],"dstIndex":159,"srcIndex":164,"timestampMs":1536952428000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813206"],"dstIndex":124,"srcIndex":164,"timestampMs":1536952413000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","decentralion","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":140,"srcIndex":164,"timestampMs":1537294756000},{"address":["sourcecred","github","REACTS","THUMBS_UP","5","sourcecred","github","USERLIKE","USER","wchargin","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":140,"srcIndex":165,"timestampMs":1537294753000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjBhMjIzMzQ2YjRlNmRlYzAxMjdiMWU2YWE4OTJjNGVlMDQyNGI2NmE=","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":157,"srcIndex":141,"timestampMs":1519807427000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZiZDFiNGMwYjcxOWMyMmM2ODhhNzQ4NjNiZTA3YTY5OWI3YjliMzQ=","5","sourcecred","github","USERLIKE","USER","wchargin"],"dstIndex":165,"srcIndex":142,"timestampMs":1536806901000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZkNWIzYWEzMWViYjY4YTA2Y2ViNDZiYmQ2Y2Y0OWI2Y2NkNmY1ZTY=","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":158,"srcIndex":143,"timestampMs":1519878354000},{"address":["sourcecred","github","REFERENCES","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmM0MzBiZDc0NDU1MTA1Zjc3MjE1ZWNlNTE5NDUwOTRjZWVlZTZjODY=","5","sourcecred","github","USERLIKE","USER","wchargin"],"dstIndex":165,"srcIndex":144,"timestampMs":1536788634000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10"],"dstIndex":148,"srcIndex":148,"timestampMs":1530297021000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","10","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":152,"srcIndex":148,"timestampMs":1530297021000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjOTFhZGI3MThhNjA0NWI0OTIzMDNmMDBkOGU4YmViOTU3ZGM3ODA="],"dstIndex":145,"srcIndex":150,"timestampMs":1536878086000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","12","4","sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjYzg4OWRjOTRjZjZkYTE3YWU2ZWFiNWJiN2I3MTU1ZjU3NzUxOWQ="],"dstIndex":146,"srcIndex":150,"timestampMs":1536878086000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":147,"srcIndex":152,"timestampMs":1519807129000},{"address":["sourcecred","github","REFERENCES","6","sourcecred","github","PULL","sourcecred-test","example-github","5","5","sourcecred","github","USERLIKE","USER","wchargin"],"dstIndex":165,"srcIndex":158,"timestampMs":1519807636000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768703","6","sourcecred","github","ISSUE","sourcecred-test","example-github","6"],"dstIndex":154,"srcIndex":126,"timestampMs":1521217693000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768850","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768538"],"dstIndex":135,"srcIndex":127,"timestampMs":1521217725000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576185","6","sourcecred","github","PULL","sourcecred-test","example-github","5"],"dstIndex":158,"srcIndex":128,"timestampMs":1525137909000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576220","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],"dstIndex":161,"srcIndex":129,"timestampMs":1525137925000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576248","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":140,"srcIndex":130,"timestampMs":1525137939000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576273","5","sourcecred","github","USERLIKE","USER","wchargin"],"dstIndex":165,"srcIndex":131,"timestampMs":1525137951000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","6","sourcecred","github","ISSUE","sourcecred-test","example-github","1"],"dstIndex":147,"srcIndex":132,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":152,"srcIndex":132,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","6","sourcecred","github","PULL","sourcecred-test","example-github","3"],"dstIndex":157,"srcIndex":132,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","7","sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],"dstIndex":161,"srcIndex":132,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920","9","sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],"dstIndex":140,"srcIndex":132,"timestampMs":1525138231000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","385223316","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":152,"srcIndex":136,"timestampMs":1524973307000},{"address":["sourcecred","github","REFERENCES","8","sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","3","369162222","6","sourcecred","github","ISSUE","sourcecred-test","example-github","2"],"dstIndex":152,"srcIndex":138,"timestampMs":1519807420000}],"nodes":[{"description":"dandelion","index":0,"timestampMs":null},{"description":"william","index":1,"timestampMs":null},{"description":"beanow","index":2,"timestampMs":null},{"description":"❤️ by dl-proto on [#1 on My First Test Post](https://sourcecred-test.discourse.group/t/11/1)","index":3,"timestampMs":1564744498189},{"description":"[#1 on About the Site Feedback category](https://sourcecred-test.discourse.group/t/1/1)","index":4,"timestampMs":1554236409844},{"description":"[#1 on Welcome to Discourse](https://sourcecred-test.discourse.group/t/7/1)","index":5,"timestampMs":1554236412933},{"description":"[#1 on My First Test Post](https://sourcecred-test.discourse.group/t/11/1)","index":6,"timestampMs":1564744349476},{"description":"[#2 on My First Test Post](https://sourcecred-test.discourse.group/t/11/2)","index":7,"timestampMs":1564744496285},{"description":"[#1 on A Thread With Links](https://sourcecred-test.discourse.group/t/13/1)","index":8,"timestampMs":1564744553905},{"description":"[#2 on A Thread With Links](https://sourcecred-test.discourse.group/t/13/2)","index":9,"timestampMs":1564744591313},{"description":"[#3 on My First Test Post](https://sourcecred-test.discourse.group/t/11/3)","index":10,"timestampMs":1564951839667},{"description":"[#1 on Test Poll Please Ignore](https://sourcecred-test.discourse.group/t/18/1)","index":11,"timestampMs":1570049410625},{"description":"[#1 on This post will be a wiki](https://sourcecred-test.discourse.group/t/19/1)","index":12,"timestampMs":1570049491743},{"description":"[#2 on This post will be a wiki](https://sourcecred-test.discourse.group/t/19/2)","index":13,"timestampMs":1570049836311},{"description":"[#1 on 123 a post with numbers in slug](https://sourcecred-test.discourse.group/t/20/1)","index":14,"timestampMs":1570420159922},{"description":"[#1 on A Post With References](https://sourcecred-test.discourse.group/t/21/1)","index":15,"timestampMs":1571855191281},{"description":"[#1 on About the Filler category](https://sourcecred-test.discourse.group/t/24/1)","index":16,"timestampMs":1573839531354},{"description":"[#1 on About the Big Filler category](https://sourcecred-test.discourse.group/t/25/1)","index":17,"timestampMs":1573839624599},{"description":"[#1 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/1)","index":18,"timestampMs":1573839733554},{"description":"[#2 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/2)","index":19,"timestampMs":1573839810871},{"description":"[#3 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/3)","index":20,"timestampMs":1573839814701},{"description":"[#4 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/4)","index":21,"timestampMs":1573839818330},{"description":"[#5 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/5)","index":22,"timestampMs":1573839821821},{"description":"[#6 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/6)","index":23,"timestampMs":1573839825601},{"description":"[#7 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/7)","index":24,"timestampMs":1573839828825},{"description":"[#8 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/8)","index":25,"timestampMs":1573839832023},{"description":"[#9 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/9)","index":26,"timestampMs":1573839835298},{"description":"[#10 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/10)","index":27,"timestampMs":1573839840261},{"description":"[#11 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/11)","index":28,"timestampMs":1573839843418},{"description":"[#12 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/12)","index":29,"timestampMs":1573839846537},{"description":"[#13 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/13)","index":30,"timestampMs":1573839849459},{"description":"[#14 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/14)","index":31,"timestampMs":1573839852186},{"description":"[#15 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/15)","index":32,"timestampMs":1573839855068},{"description":"[#16 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/16)","index":33,"timestampMs":1573839857787},{"description":"[#17 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/17)","index":34,"timestampMs":1573839860730},{"description":"[#18 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/18)","index":35,"timestampMs":1573839863576},{"description":"[#19 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/19)","index":36,"timestampMs":1573839866548},{"description":"[#20 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/20)","index":37,"timestampMs":1573839869555},{"description":"[#21 on Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26/21)","index":38,"timestampMs":1573839872244},{"description":"[#1 on Filler Topic #1](https://sourcecred-test.discourse.group/t/27/1)","index":39,"timestampMs":1573840159198},{"description":"[#1 on Filler Topic #2](https://sourcecred-test.discourse.group/t/28/1)","index":40,"timestampMs":1573840233231},{"description":"[#1 on Filler Topic #3](https://sourcecred-test.discourse.group/t/29/1)","index":41,"timestampMs":1573840310550},{"description":"[#1 on Filler Topic #4](https://sourcecred-test.discourse.group/t/30/1)","index":42,"timestampMs":1573840335123},{"description":"[#1 on Filler Topic #5](https://sourcecred-test.discourse.group/t/31/1)","index":43,"timestampMs":1573840348410},{"description":"[#1 on Filler Topic #6](https://sourcecred-test.discourse.group/t/32/1)","index":44,"timestampMs":1573840354669},{"description":"[#1 on Filler Topic #7](https://sourcecred-test.discourse.group/t/33/1)","index":45,"timestampMs":1573840360335},{"description":"[#1 on Filler Topic #8](https://sourcecred-test.discourse.group/t/34/1)","index":46,"timestampMs":1573840366708},{"description":"[#1 on Filler Topic #9](https://sourcecred-test.discourse.group/t/35/1)","index":47,"timestampMs":1573840372677},{"description":"[#1 on Filler Topic #10](https://sourcecred-test.discourse.group/t/36/1)","index":48,"timestampMs":1573840428729},{"description":"[#1 on Filler Topic #11](https://sourcecred-test.discourse.group/t/37/1)","index":49,"timestampMs":1573840450294},{"description":"[#1 on Filler Topic #12](https://sourcecred-test.discourse.group/t/38/1)","index":50,"timestampMs":1573840464212},{"description":"[#1 on Filler Topic #13](https://sourcecred-test.discourse.group/t/39/1)","index":51,"timestampMs":1573840469806},{"description":"[#1 on Filler Topic #14](https://sourcecred-test.discourse.group/t/40/1)","index":52,"timestampMs":1573840474450},{"description":"[#1 on Filler Topic #15](https://sourcecred-test.discourse.group/t/41/1)","index":53,"timestampMs":1573840480604},{"description":"[#1 on Filler Topic #16](https://sourcecred-test.discourse.group/t/42/1)","index":54,"timestampMs":1573840486299},{"description":"[#1 on Filler Topic #17](https://sourcecred-test.discourse.group/t/43/1)","index":55,"timestampMs":1573840496395},{"description":"[#1 on Filler Topic #18](https://sourcecred-test.discourse.group/t/44/1)","index":56,"timestampMs":1573840503032},{"description":"[#1 on Filler Topic #19](https://sourcecred-test.discourse.group/t/45/1)","index":57,"timestampMs":1573840509355},{"description":"[#1 on Filler Topic #20](https://sourcecred-test.discourse.group/t/46/1)","index":58,"timestampMs":1573840516283},{"description":"[#1 on Filler Topic #21](https://sourcecred-test.discourse.group/t/47/1)","index":59,"timestampMs":1573840525734},{"description":"[#1 on Filler Topic #22](https://sourcecred-test.discourse.group/t/48/1)","index":60,"timestampMs":1573840532029},{"description":"[#1 on Filler Topic #23](https://sourcecred-test.discourse.group/t/49/1)","index":61,"timestampMs":1573840538301},{"description":"[#1 on Filler Topic #24](https://sourcecred-test.discourse.group/t/50/1)","index":62,"timestampMs":1573840544868},{"description":"[#1 on Filler Topic #25](https://sourcecred-test.discourse.group/t/51/1)","index":63,"timestampMs":1573840551728},{"description":"[#1 on Filler Topic #26](https://sourcecred-test.discourse.group/t/52/1)","index":64,"timestampMs":1573840562068},{"description":"[#1 on Filler Topic #27](https://sourcecred-test.discourse.group/t/53/1)","index":65,"timestampMs":1573840567788},{"description":"[#1 on Filler Topic #28](https://sourcecred-test.discourse.group/t/54/1)","index":66,"timestampMs":1573840574181},{"description":"[#1 on Filler Topic #29](https://sourcecred-test.discourse.group/t/55/1)","index":67,"timestampMs":1573840580352},{"description":"[#1 on Filler Topic #30](https://sourcecred-test.discourse.group/t/56/1)","index":68,"timestampMs":1573840590166},{"description":"[#1 on Filler Topic #31](https://sourcecred-test.discourse.group/t/57/1)","index":69,"timestampMs":1573840598964},{"description":"[About the Site Feedback category](https://sourcecred-test.discourse.group/t/1)","index":70,"timestampMs":1554236409674},{"description":"[My First Test Post](https://sourcecred-test.discourse.group/t/11)","index":71,"timestampMs":1564744349408},{"description":"[A Thread With Links](https://sourcecred-test.discourse.group/t/13)","index":72,"timestampMs":1564744553843},{"description":"[Test Poll Please Ignore](https://sourcecred-test.discourse.group/t/18)","index":73,"timestampMs":1570049410568},{"description":"[This post will be a wiki](https://sourcecred-test.discourse.group/t/19)","index":74,"timestampMs":1570049491690},{"description":"[123 a post with numbers in slug](https://sourcecred-test.discourse.group/t/20)","index":75,"timestampMs":1570420159868},{"description":"[A Post With References](https://sourcecred-test.discourse.group/t/21)","index":76,"timestampMs":1571855191140},{"description":"[About the Filler category](https://sourcecred-test.discourse.group/t/24)","index":77,"timestampMs":1573839531345},{"description":"[About the Big Filler category](https://sourcecred-test.discourse.group/t/25)","index":78,"timestampMs":1573839624590},{"description":"[Big Filler Topic 1](https://sourcecred-test.discourse.group/t/26)","index":79,"timestampMs":1573839733506},{"description":"[Filler Topic #1](https://sourcecred-test.discourse.group/t/27)","index":80,"timestampMs":1573840159140},{"description":"[Filler Topic #2](https://sourcecred-test.discourse.group/t/28)","index":81,"timestampMs":1573840233177},{"description":"[Filler Topic #3](https://sourcecred-test.discourse.group/t/29)","index":82,"timestampMs":1573840310488},{"description":"[Filler Topic #4](https://sourcecred-test.discourse.group/t/30)","index":83,"timestampMs":1573840335060},{"description":"[Filler Topic #5](https://sourcecred-test.discourse.group/t/31)","index":84,"timestampMs":1573840348348},{"description":"[Filler Topic #6](https://sourcecred-test.discourse.group/t/32)","index":85,"timestampMs":1573840354599},{"description":"[Filler Topic #7](https://sourcecred-test.discourse.group/t/33)","index":86,"timestampMs":1573840360253},{"description":"[Filler Topic #8](https://sourcecred-test.discourse.group/t/34)","index":87,"timestampMs":1573840366625},{"description":"[Filler Topic #9](https://sourcecred-test.discourse.group/t/35)","index":88,"timestampMs":1573840372613},{"description":"[Filler Topic #10](https://sourcecred-test.discourse.group/t/36)","index":89,"timestampMs":1573840428677},{"description":"[Filler Topic #11](https://sourcecred-test.discourse.group/t/37)","index":90,"timestampMs":1573840450242},{"description":"[Filler Topic #12](https://sourcecred-test.discourse.group/t/38)","index":91,"timestampMs":1573840464152},{"description":"[Filler Topic #13](https://sourcecred-test.discourse.group/t/39)","index":92,"timestampMs":1573840469748},{"description":"[Filler Topic #14](https://sourcecred-test.discourse.group/t/40)","index":93,"timestampMs":1573840474386},{"description":"[Filler Topic #15](https://sourcecred-test.discourse.group/t/41)","index":94,"timestampMs":1573840480538},{"description":"[Filler Topic #16](https://sourcecred-test.discourse.group/t/42)","index":95,"timestampMs":1573840486242},{"description":"[Filler Topic #17](https://sourcecred-test.discourse.group/t/43)","index":96,"timestampMs":1573840496337},{"description":"[Filler Topic #18](https://sourcecred-test.discourse.group/t/44)","index":97,"timestampMs":1573840502978},{"description":"[Filler Topic #19](https://sourcecred-test.discourse.group/t/45)","index":98,"timestampMs":1573840509297},{"description":"[Filler Topic #20](https://sourcecred-test.discourse.group/t/46)","index":99,"timestampMs":1573840516235},{"description":"[Filler Topic #21](https://sourcecred-test.discourse.group/t/47)","index":100,"timestampMs":1573840525656},{"description":"[Filler Topic #22](https://sourcecred-test.discourse.group/t/48)","index":101,"timestampMs":1573840531935},{"description":"[Filler Topic #23](https://sourcecred-test.discourse.group/t/49)","index":102,"timestampMs":1573840538246},{"description":"[Filler Topic #24](https://sourcecred-test.discourse.group/t/50)","index":103,"timestampMs":1573840544797},{"description":"[Filler Topic #25](https://sourcecred-test.discourse.group/t/51)","index":104,"timestampMs":1573840551656},{"description":"[Filler Topic #26](https://sourcecred-test.discourse.group/t/52)","index":105,"timestampMs":1573840562010},{"description":"[Filler Topic #27](https://sourcecred-test.discourse.group/t/53)","index":106,"timestampMs":1573840567727},{"description":"[Filler Topic #28](https://sourcecred-test.discourse.group/t/54)","index":107,"timestampMs":1573840574124},{"description":"[Filler Topic #29](https://sourcecred-test.discourse.group/t/55)","index":108,"timestampMs":1573840580295},{"description":"[Filler Topic #30](https://sourcecred-test.discourse.group/t/56)","index":109,"timestampMs":1573840590101},{"description":"[Filler Topic #31](https://sourcecred-test.discourse.group/t/57)","index":110,"timestampMs":1573840598902},{"description":"[Welcome to Discourse](https://sourcecred-test.discourse.group/t/7)","index":111,"timestampMs":1554236412879},{"description":"[@beanow.sc-test](https://sourcecred-test.discourse.group/u/beanow.sc-test/)","index":112,"timestampMs":null},{"description":"[@d11](https://sourcecred-test.discourse.group/u/d11/)","index":113,"timestampMs":null},{"description":"[@dl-proto](https://sourcecred-test.discourse.group/u/dl-proto/)","index":114,"timestampMs":null},{"description":"[@system](https://sourcecred-test.discourse.group/u/system/)","index":115,"timestampMs":null},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/11#issuecomment-420811872) on [#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":122,"timestampMs":1536789545000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/11#issuecomment-420813013) on [#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":123,"timestampMs":1536789813000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/11#issuecomment-420813206) on [#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":124,"timestampMs":1536789858000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/11#issuecomment-420813621) on [#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":125,"timestampMs":1536789965000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-373768703) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":126,"timestampMs":1521217693000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-373768850) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":127,"timestampMs":1521217725000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576185) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":128,"timestampMs":1525137909000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576220) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":129,"timestampMs":1525137925000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576248) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":130,"timestampMs":1525137939000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576273) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":131,"timestampMs":1525137951000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576920) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":132,"timestampMs":1525138231000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/2#issuecomment-385576936) on [#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":133,"timestampMs":1525138238000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/6#issuecomment-373768442) on [#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":134,"timestampMs":1521217642000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/6#issuecomment-373768538) on [#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":135,"timestampMs":1521217661000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/6#issuecomment-385223316) on [#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":136,"timestampMs":1524973307000},{"description":"[comment](https://github.com/sourcecred-test/example-github/issues/6#issuecomment-417104047) on [#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":137,"timestampMs":1535576390000},{"description":"[comment](https://github.com/sourcecred-test/example-github/pull/3#issuecomment-369162222) on [#3](https://github.com/sourcecred-test/example-github/pull/3): Add README, merge via PR.","index":138,"timestampMs":1519807420000},{"description":"[comment](https://github.com/sourcecred-test/example-github/pull/5#issuecomment-396430464) on [#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":139,"timestampMs":1528764380000},{"description":"[comment](https://github.com/sourcecred-test/example-github/pull/5#discussion_r171460198) on [review](https://github.com/sourcecred-test/example-github/pull/5#pullrequestreview-100313899) on [#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":140,"timestampMs":1519878210000},{"description":"[0a22334](https://github.com/sourcecred-test/example-github/commit/0a223346b4e6dec0127b1e6aa892c4ee0424b66a): Merge pull request #3 from sourcecred/add-readme","index":141,"timestampMs":1519807427000},{"description":"[6bd1b4c](https://github.com/sourcecred-test/example-github/commit/6bd1b4c0b719c22c688a74863be07a699b7b9b34): A commit from someone with no GitHub account","index":142,"timestampMs":1536806901000},{"description":"[6d5b3aa](https://github.com/sourcecred-test/example-github/commit/6d5b3aa31ebb68a06ceb46bbd6cf49b6ccd6f5e6): This pull request will be more contentious. I can feel it... (#5)","index":143,"timestampMs":1519878354000},{"description":"[c430bd7](https://github.com/sourcecred-test/example-github/commit/c430bd74455105f77215ece51945094ceeee6c86): Hello from credbot!","index":144,"timestampMs":1536788634000},{"description":"[ec91adb](https://github.com/sourcecred-test/example-github/commit/ec91adb718a6045b492303f00d8e8beb957dc780): Commit without pull request.","index":145,"timestampMs":1519807271000},{"description":"[ecc889d](https://github.com/sourcecred-test/example-github/commit/ecc889dc94cf6da17ae6eab5bb7b7155f577519d): Add README, merge via PR.","index":146,"timestampMs":1519807329000},{"description":"[#1](https://github.com/sourcecred-test/example-github/issues/1): An example issue.","index":147,"timestampMs":1519807088000},{"description":"[#10](https://github.com/sourcecred-test/example-github/issues/10): Paired with multireference","index":148,"timestampMs":1530297021000},{"description":"[#11](https://github.com/sourcecred-test/example-github/issues/11): An issue with a comment from a deleted user","index":149,"timestampMs":1536789479000},{"description":"[#12](https://github.com/sourcecred-test/example-github/issues/12): An issue with commit references","index":150,"timestampMs":1536878086000},{"description":"[#13](https://github.com/sourcecred-test/example-github/issues/13): An issue with reactions","index":151,"timestampMs":1536878137000},{"description":"[#2](https://github.com/sourcecred-test/example-github/issues/2): A referencing issue.","index":152,"timestampMs":1519807129000},{"description":"[#4](https://github.com/sourcecred-test/example-github/issues/4): A closed pull request","index":153,"timestampMs":1519807454000},{"description":"[#6](https://github.com/sourcecred-test/example-github/issues/6): An issue with comments","index":154,"timestampMs":1521217624000},{"description":"[#7](https://github.com/sourcecred-test/example-github/issues/7): An issue with an extremely long title, which even has a VerySuperFragicalisticialiManyCharacterUberLongTriplePlusGood word in it, and should really be truncated intelligently or something","index":155,"timestampMs":1521569949000},{"description":"[#8](https://github.com/sourcecred-test/example-github/issues/8): Issue with Unicode: ȴሲ𣐳楢👍 :heart: 𐤔𐤁𐤀𐤑𐤍𐤉𐤔𐤌𐤄𐤍𐤍 ❤️","index":156,"timestampMs":1521570243000},{"description":"[#3](https://github.com/sourcecred-test/example-github/pull/3): Add README, merge via PR.","index":157,"timestampMs":1519807399000},{"description":"[#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":158,"timestampMs":1519807636000},{"description":"[#9](https://github.com/sourcecred-test/example-github/pull/9): An unmerged pull request","index":159,"timestampMs":1525373595000},{"description":"[sourcecred-test/example-github](https://github.com/sourcecred-test/example-github)","index":160,"timestampMs":1519807034000},{"description":"[review](https://github.com/sourcecred-test/example-github/pull/5#pullrequestreview-100313899) on [#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":161,"timestampMs":1519878210000},{"description":"[review](https://github.com/sourcecred-test/example-github/pull/5#pullrequestreview-100314038) on [#5](https://github.com/sourcecred-test/example-github/pull/5): This pull request will be more contentious. I can feel it...","index":162,"timestampMs":1519878296000},{"description":"[@credbot](https://github.com/credbot)","index":163,"timestampMs":null},{"description":"[@decentralion](https://github.com/decentralion)","index":164,"timestampMs":null},{"description":"[@wchargin](https://github.com/wchargin)","index":165,"timestampMs":null}],"sortedNodeAddresses":[["sourcecred","core","IDENTITY","USER","YX6zzoNxYwGgLduJqWVoAg"],["sourcecred","core","IDENTITY","USER","mbzRr0D3A2wcD1E7p0H2rQ"],["sourcecred","core","IDENTITY","USER","ytxt20G2QLd8Z135K0cyUA"],["sourcecred","discourse","like","https://sourcecred-test.discourse.group","dl-proto","14"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","1"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","10"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","14"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","16"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","17"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","18"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","22"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","25"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","26"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","27"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","28"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","29"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","32"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","33"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","34"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","35"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","36"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","37"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","38"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","39"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","40"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","41"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","42"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","43"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","44"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","45"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","46"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","47"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","48"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","49"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","50"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","51"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","52"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","53"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","54"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","55"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","56"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","57"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","58"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","59"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","60"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","61"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","62"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","63"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","64"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","65"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","66"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","67"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","68"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","69"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","70"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","71"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","72"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","73"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","74"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","75"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","76"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","77"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","78"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","79"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","80"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","81"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","82"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","83"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","84"],["sourcecred","discourse","post","https://sourcecred-test.discourse.group","85"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","1"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","11"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","13"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","18"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","19"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","20"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","21"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","24"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","25"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","26"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","27"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","28"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","29"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","30"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","31"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","32"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","33"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","34"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","35"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","36"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","37"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","38"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","39"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","40"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","41"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","42"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","43"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","44"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","45"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","46"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","47"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","48"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","49"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","50"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","51"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","52"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","53"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","54"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","55"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","56"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","57"],["sourcecred","discourse","topic","https://sourcecred-test.discourse.group","7"],["sourcecred","discourse","user","https://sourcecred-test.discourse.group","beanow.sc-test"],["sourcecred","discourse","user","https://sourcecred-test.discourse.group","d11"],["sourcecred","discourse","user","https://sourcecred-test.discourse.group","dl-proto"],["sourcecred","discourse","user","https://sourcecred-test.discourse.group","system"],["sourcecred","git","COMMIT","0a223346b4e6dec0127b1e6aa892c4ee0424b66a"],["sourcecred","git","COMMIT","6bd1b4c0b719c22c688a74863be07a699b7b9b34"],["sourcecred","git","COMMIT","6d5b3aa31ebb68a06ceb46bbd6cf49b6ccd6f5e6"],["sourcecred","git","COMMIT","c430bd74455105f77215ece51945094ceeee6c86"],["sourcecred","git","COMMIT","ec91adb718a6045b492303f00d8e8beb957dc780"],["sourcecred","git","COMMIT","ecc889dc94cf6da17ae6eab5bb7b7155f577519d"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420811872"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813013"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813206"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","11","420813621"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768703"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","373768850"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576185"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576220"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576248"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576273"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576920"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","2","385576936"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768442"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","373768538"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","385223316"],["sourcecred","github","COMMENT","ISSUE","sourcecred-test","example-github","6","417104047"],["sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","3","369162222"],["sourcecred","github","COMMENT","PULL","sourcecred-test","example-github","5","396430464"],["sourcecred","github","COMMENT","REVIEW","sourcecred-test","example-github","5","100313899","171460198"],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjBhMjIzMzQ2YjRlNmRlYzAxMjdiMWU2YWE4OTJjNGVlMDQyNGI2NmE="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZiZDFiNGMwYjcxOWMyMmM2ODhhNzQ4NjNiZTA3YTY5OWI3YjliMzQ="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OjZkNWIzYWEzMWViYjY4YTA2Y2ViNDZiYmQ2Y2Y0OWI2Y2NkNmY1ZTY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmM0MzBiZDc0NDU1MTA1Zjc3MjE1ZWNlNTE5NDUwOTRjZWVlZTZjODY="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjOTFhZGI3MThhNjA0NWI0OTIzMDNmMDBkOGU4YmViOTU3ZGM3ODA="],["sourcecred","github","COMMIT","MDY6Q29tbWl0MTIzMjU1MDA2OmVjYzg4OWRjOTRjZjZkYTE3YWU2ZWFiNWJiN2I3MTU1ZjU3NzUxOWQ="],["sourcecred","github","ISSUE","sourcecred-test","example-github","1"],["sourcecred","github","ISSUE","sourcecred-test","example-github","10"],["sourcecred","github","ISSUE","sourcecred-test","example-github","11"],["sourcecred","github","ISSUE","sourcecred-test","example-github","12"],["sourcecred","github","ISSUE","sourcecred-test","example-github","13"],["sourcecred","github","ISSUE","sourcecred-test","example-github","2"],["sourcecred","github","ISSUE","sourcecred-test","example-github","4"],["sourcecred","github","ISSUE","sourcecred-test","example-github","6"],["sourcecred","github","ISSUE","sourcecred-test","example-github","7"],["sourcecred","github","ISSUE","sourcecred-test","example-github","8"],["sourcecred","github","PULL","sourcecred-test","example-github","3"],["sourcecred","github","PULL","sourcecred-test","example-github","5"],["sourcecred","github","PULL","sourcecred-test","example-github","9"],["sourcecred","github","REPO","sourcecred-test","example-github"],["sourcecred","github","REVIEW","sourcecred-test","example-github","5","100313899"],["sourcecred","github","REVIEW","sourcecred-test","example-github","5","100314038"],["sourcecred","github","USERLIKE","BOT","credbot"],["sourcecred","github","USERLIKE","USER","decentralion"],["sourcecred","github","USERLIKE","USER","wchargin"]]}],"weightsJSON":[{"type":"sourcecred/weights","version":"0.2.0"},{"edgeWeights":{"E\u0000sourcecred\u0000discourse\u0000authors\u0000post\u0000":{"backwards":1,"forwards":0},"E\u0000sourcecred\u0000discourse\u0000authors\u0000topic\u0000":{"backwards":1,"forwards":0},"E\u0000sourcecred\u0000discourse\u0000createsLike\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000discourse\u0000likes\u0000":{"backwards":0,"forwards":1},"E\u0000sourcecred\u0000discourse\u0000references\u0000post\u0000":{"backwards":0,"forwards":0.5},"E\u0000sourcecred\u0000discourse\u0000references\u0000topic\u0000":{"backwards":0,"forwards":0.5},"E\u0000sourcecred\u0000discourse\u0000references\u0000user\u0000":{"backwards":0,"forwards":0.25},"E\u0000sourcecred\u0000discourse\u0000replyTo\u0000":{"backwards":0,"forwards":0.5},"E\u0000sourcecred\u0000discourse\u0000topicContainsPost\u0000":{"backwards":0.125,"forwards":0},"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\u0000discourse\u0000like\u0000":4,"N\u0000sourcecred\u0000discourse\u0000like\u0000https://sourcecred-test.discourse.group\u0000dl-proto\u000014\u0000":0.1,"N\u0000sourcecred\u0000discourse\u0000post\u0000":32,"N\u0000sourcecred\u0000discourse\u0000topic\u0000":0,"N\u0000sourcecred\u0000discourse\u0000user\u0000":0,"N\u0000sourcecred\u0000github\u0000COMMENT\u0000":1,"N\u0000sourcecred\u0000github\u0000COMMIT\u0000":1,"N\u0000sourcecred\u0000github\u0000ISSUE\u0000":2,"N\u0000sourcecred\u0000github\u0000PULL\u0000":4,"N\u0000sourcecred\u0000github\u0000PULL\u0000sourcecred-test\u0000example-github\u00009\u0000":0,"N\u0000sourcecred\u0000github\u0000REPO\u0000":4,"N\u0000sourcecred\u0000github\u0000REVIEW\u0000":1,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000BOT\u0000":32,"N\u0000sourcecred\u0000github\u0000USERLIKE\u0000USER\u0000":0}}]}]}] \ No newline at end of file diff --git a/src/ledger/__snapshots__/ledger.test.js.snap b/src/ledger/__snapshots__/ledger.test.js.snap index 5d81ba1..a120b91 100644 --- a/src/ledger/__snapshots__/ledger.test.js.snap +++ b/src/ledger/__snapshots__/ledger.test.js.snap @@ -4,7 +4,7 @@ exports[`ledger/ledger state reconstruction serialized ledger snapshots as expec "[ {\\"action\\":{\\"identity\\":{\\"address\\":\\"N\\\\u0000sourcecred\\\\u0000core\\\\u0000IDENTITY\\\\u0000USER\\\\u0000YVZhbGlkVXVpZEF0TGFzdA\\\\u0000\\",\\"aliases\\":[],\\"id\\":\\"YVZhbGlkVXVpZEF0TGFzdA\\",\\"name\\":\\"steven\\",\\"subtype\\":\\"USER\\"},\\"type\\":\\"CREATE_IDENTITY\\"},\\"ledgerTimestamp\\":0,\\"uuid\\":\\"000000000000000000000A\\",\\"version\\":\\"1\\"}, {\\"action\\":{\\"identity\\":{\\"address\\":\\"N\\\\u0000sourcecred\\\\u0000core\\\\u0000IDENTITY\\\\u0000ORGANIZATION\\\\u0000URgLrCxgvjHxtGJ9PgmckQ\\\\u0000\\",\\"aliases\\":[],\\"id\\":\\"URgLrCxgvjHxtGJ9PgmckQ\\",\\"name\\":\\"crystal-gems\\",\\"subtype\\":\\"ORGANIZATION\\"},\\"type\\":\\"CREATE_IDENTITY\\"},\\"ledgerTimestamp\\":1,\\"uuid\\":\\"000000000000000000001A\\",\\"version\\":\\"1\\"}, -{\\"action\\":{\\"alias\\":\\"N\\\\u0000a1\\\\u0000\\",\\"identityId\\":\\"YVZhbGlkVXVpZEF0TGFzdA\\",\\"type\\":\\"ADD_ALIAS\\"},\\"ledgerTimestamp\\":3,\\"uuid\\":\\"000000000000000000002A\\",\\"version\\":\\"1\\"}, +{\\"action\\":{\\"alias\\":{\\"address\\":\\"N\\\\u0000alias\\\\u0000\\",\\"description\\":\\"alias\\"},\\"identityId\\":\\"YVZhbGlkVXVpZEF0TGFzdA\\",\\"type\\":\\"ADD_ALIAS\\"},\\"ledgerTimestamp\\":3,\\"uuid\\":\\"000000000000000000002A\\",\\"version\\":\\"1\\"}, {\\"action\\":{\\"identityId\\":\\"YVZhbGlkVXVpZEF0TGFzdA\\",\\"type\\":\\"TOGGLE_ACTIVATION\\"},\\"ledgerTimestamp\\":4,\\"uuid\\":\\"000000000000000000003A\\",\\"version\\":\\"1\\"}, {\\"action\\":{\\"identityId\\":\\"URgLrCxgvjHxtGJ9PgmckQ\\",\\"type\\":\\"TOGGLE_ACTIVATION\\"},\\"ledgerTimestamp\\":4,\\"uuid\\":\\"000000000000000000004A\\",\\"version\\":\\"1\\"}, {\\"action\\":{\\"distribution\\":{\\"allocations\\":[{\\"id\\":\\"yYNur0NEEkh7fMaUn6n9QQ\\",\\"policy\\":{\\"budget\\":\\"100\\",\\"policyType\\":\\"IMMEDIATE\\"},\\"receipts\\":[{\\"amount\\":\\"50\\",\\"id\\":\\"YVZhbGlkVXVpZEF0TGFzdA\\"},{\\"amount\\":\\"50\\",\\"id\\":\\"URgLrCxgvjHxtGJ9PgmckQ\\"}]}],\\"credTimestamp\\":1,\\"id\\":\\"f9xPz9YGH0PuBpPAg2824Q\\"},\\"type\\":\\"DISTRIBUTE_GRAIN\\"},\\"ledgerTimestamp\\":4,\\"uuid\\":\\"000000000000000000005A\\",\\"version\\":\\"1\\"}, diff --git a/src/ledger/computeDistribution.test.js b/src/ledger/computeDistribution.test.js index 6b41b1a..201d40b 100644 --- a/src/ledger/computeDistribution.test.js +++ b/src/ledger/computeDistribution.test.js @@ -20,10 +20,12 @@ describe("ledger/computeDistribution", () => { })); const unclaimedAliases = [ { - address: NodeAddress.empty, + alias: { + address: NodeAddress.empty, + description: "irrelevant", + }, cred: [4, 5, 6], totalCred: 15, - description: "irrelevant", }, ]; const accountsData = { diff --git a/src/ledger/credAccounts.js b/src/ledger/credAccounts.js index 5a7e879..9fdebbf 100644 --- a/src/ledger/credAccounts.js +++ b/src/ledger/credAccounts.js @@ -14,6 +14,7 @@ import {Ledger, type Account} from "./ledger"; import {CredView} from "../analysis/credView"; import {type TimestampMs} from "../util/timestamp"; import {NodeAddress, type NodeAddressT} from "../core/graph"; +import {type Alias} from "./identity"; export type Cred = $ReadOnlyArray; @@ -24,10 +25,7 @@ export type CredAccount = {| |}; export type UnclaimedAlias = {| - +address: NodeAddressT, - // We include the description for convenience in figuring out who this user is, - // rendering in a UI, etc. This is just the description from the Graph. - +description: string, + +alias: Alias, +totalCred: number, +cred: Cred, |}; @@ -67,7 +65,7 @@ export function _computeCredAccounts( userlikeInfo: Map, intervalEndpoints: $ReadOnlyArray ): CredAccountData { - const aliases: Set = new Set(); + const aliasAddresses: Set = new Set(); const accountAddresses: Set = new Set(); const accounts = []; @@ -76,7 +74,7 @@ export function _computeCredAccounts( for (const account of grainAccounts) { accountAddresses.add(account.identity.address); for (const alias of account.identity.aliases) { - aliases.add(alias); + aliasAddresses.add(alias.address); } const info = userlikeInfo.get(account.identity.address); if (info == null) { @@ -89,24 +87,23 @@ export function _computeCredAccounts( accounts.push(credAccount); } - for (const [userAddress, info] of userlikeInfo.entries()) { - if (accountAddresses.has(userAddress)) { + for (const [address, info] of userlikeInfo.entries()) { + if (accountAddresses.has(address)) { // This userlike actually has an explicit account continue; } - if (aliases.has(userAddress)) { + const {cred, description} = info; + if (aliasAddresses.has(address)) { throw new Error( `cred sync error: alias ${NodeAddress.toString( - userAddress - )} included in Cred scores` + address + )} (aka ${description}) included in Cred scores` ); } - const {cred, description} = info; unclaimedAliases.push({ - address: userAddress, + alias: {address, description}, cred, totalCred: sum(cred), - description, }); } return {accounts, unclaimedAliases, intervalEndpoints}; diff --git a/src/ledger/credAccounts.test.js b/src/ledger/credAccounts.test.js index 4a6382f..eea6bec 100644 --- a/src/ledger/credAccounts.test.js +++ b/src/ledger/credAccounts.test.js @@ -23,10 +23,12 @@ describe("ledger/credAccounts", () => { const intervalEndpoints = [123, 125, 127]; const expectedCredAccount = {cred: accountCred, account, totalCred: 3}; const expectedUnclaimedAccount = { + alias: { + address: userAddress, + description: "Little lost user", + }, cred: userCred, totalCred: 2, - address: userAddress, - description: "Little lost user", }; const expectedData = { accounts: [expectedCredAccount], @@ -40,8 +42,8 @@ describe("ledger/credAccounts", () => { it("errors if an alias address is in the cred scores", () => { const ledger = new Ledger(); const id = ledger.createIdentity("USER", "sourcecred"); - const userAddress = NodeAddress.empty; - ledger.addAlias(id, userAddress); + const alias = {address: NodeAddress.empty, description: "user"}; + ledger.addAlias(id, alias); const account = ledger.accounts()[0]; const accountCred = [0, 1, 2]; @@ -51,7 +53,7 @@ describe("ledger/credAccounts", () => { account.identity.address, {cred: accountCred, description: "irrelevant"}, ], - [userAddress, {cred: userCred, description: "irrelevant"}], + [alias.address, {cred: userCred, description: "irrelevant"}], ]); const intervalEndpoints = [123, 125, 127]; @@ -59,8 +61,8 @@ describe("ledger/credAccounts", () => { _computeCredAccounts([account], info, intervalEndpoints); expect(thunk).toThrowError( `cred sync error: alias ${NodeAddress.toString( - userAddress - )} included in Cred scores` + NodeAddress.empty + )} (aka irrelevant) included in Cred scores` ); }); it("errors if an account doesn't have cred info", () => { diff --git a/src/ledger/identity.js b/src/ledger/identity.js index aa93235..cdc4b96 100644 --- a/src/ledger/identity.js +++ b/src/ledger/identity.js @@ -59,7 +59,18 @@ export type Identity = {| // Every other node in the graph that this identity corresponds to. // Does not include the identity's "own" address, i.e. the result // of calling (identityAddress(identity.id)). - +aliases: $ReadOnlyArray, + +aliases: $ReadOnlyArray, +|}; + +/** + * An Alias is basically another graph Node which resolves to this identity. We + * ignore the timestamp because it's generally not significant for users; we + * keep the address out of obvious necessity, and we keep the description so we + * can describe this alias in UIs (e.g. the ledger admin panel). + */ +export type Alias = {| + +description: string, + +address: NodeAddressT, |}; export function newIdentity(subtype: IdentitySubtype, name: string): Identity { @@ -109,7 +120,10 @@ export function graphNode({name, address}: Identity): GraphNode { export function contractions( identities: $ReadOnlyArray ): $ReadOnlyArray { - return identities.map((i) => ({replacement: graphNode(i), old: i.aliases})); + return identities.map((i) => ({ + replacement: graphNode(i), + old: i.aliases.map((a) => a.address), + })); } export const identityNameParser: C.Parser = C.fmap( @@ -124,12 +138,17 @@ export const identitySubtypeParser: C.Parser = C.exactly([ "PROJECT", ]); +export const aliasParser: C.Parser = C.object({ + address: NodeAddress.parser, + description: C.string, +}); + export const identityParser: C.Parser = C.object({ id: uuidParser, subtype: identitySubtypeParser, name: identityNameParser, address: NodeAddress.parser, - aliases: C.array(NodeAddress.parser), + aliases: C.array(aliasParser), }); const userNodeType: NodeType = { diff --git a/src/ledger/ledger.js b/src/ledger/ledger.js index 19f4e7f..871df88 100644 --- a/src/ledger/ledger.js +++ b/src/ledger/ledger.js @@ -17,6 +17,8 @@ import { newIdentity, identityNameParser, identityNameFromString, + type Alias, + aliasParser, } from "./identity"; import {type NodeAddressT, NodeAddress} from "../core/graph"; import {type TimestampMs} from "../util/timestamp"; @@ -74,7 +76,7 @@ export type Account = $ReadOnly; export class Ledger { _ledgerEventLog: JsonLog; _identityNameToId: Map; - _aliases: Map; + _aliasAddressToIdentity: Map; _accounts: Map; _latestTimestamp: TimestampMs = -Infinity; _lastDistributionTimestamp: TimestampMs = -Infinity; @@ -82,7 +84,7 @@ export class Ledger { constructor() { this._ledgerEventLog = new JsonLog(); this._identityNameToId = new Map(); - this._aliases = new Map(); + this._aliasAddressToIdentity = new Map(); this._accounts = new Map(); } @@ -141,7 +143,7 @@ export class Ledger { throw new Error(`createIdentity: new identities may not have aliases`); } // istanbul ignore if - if (this._aliases.has(identity.address)) { + if (this._aliasAddressToIdentity.has(identity.address)) { // This should never happen, as it implies a UUID conflict. throw new Error( `createIdentity: innate address already claimed ${identity.id}` @@ -151,7 +153,7 @@ export class Ledger { // Mutations! Method must not fail after this comment. this._identityNameToId.set(identity.name, identity.id); // Reserve this identity's own address - this._aliases.set(identity.address, identity.id); + this._aliasAddressToIdentity.set(identity.address, identity.id); // Every identity has a corresponding Account. this._accounts.set(identity.id, { balance: G.ZERO, @@ -216,7 +218,7 @@ export class Ledger { * Will fail if the identity does not exist. * Will fail if the alias is already claimed by any identity. */ - addAlias(identityId: IdentityId, alias: NodeAddressT): Ledger { + addAlias(identityId: IdentityId, alias: Alias): Ledger { this._createAndProcessEvent({ type: "ADD_ALIAS", identityId, @@ -231,22 +233,22 @@ export class Ledger { const account = this._mutableAccount(identityId); const existingIdentity = account.identity; const existingAliases = existingIdentity.aliases; - if (existingAliases.indexOf(alias) !== -1) { + if (existingAliases.map((a) => a.address).indexOf(alias.address) !== -1) { throw new Error( `addAlias: identity already has alias: ${ existingIdentity.name - }, ${NodeAddress.toString(alias)}` + }, ${NodeAddress.toString(alias.address)}` ); } - if (this._aliases.has(alias)) { + if (this._aliasAddressToIdentity.has(alias.address)) { // Some other identity has this alias; fail. throw new Error( - `addAlias: alias ${NodeAddress.toString(alias)} already bound` + `addAlias: alias ${NodeAddress.toString(alias.address)} already bound` ); } // Mutations below; method must not fail after this line. - this._aliases.set(alias, identityId); + this._aliasAddressToIdentity.set(alias.address, identityId); const updatedAliases = existingIdentity.aliases.slice(); updatedAliases.push(alias); const updatedIdentity = { @@ -552,12 +554,12 @@ const renameIdentityParser: C.Parser = C.object({ type AddAlias = {| +type: "ADD_ALIAS", +identityId: IdentityId, - +alias: NodeAddressT, + +alias: Alias, |}; const addAliasParser: C.Parser = C.object({ type: C.exactly(["ADD_ALIAS"]), identityId: uuid.parser, - alias: NodeAddress.parser, + alias: aliasParser, }); type ToggleActivation = {| diff --git a/src/ledger/ledger.test.js b/src/ledger/ledger.test.js index 7dc2c69..3c58797 100644 --- a/src/ledger/ledger.test.js +++ b/src/ledger/ledger.test.js @@ -80,7 +80,10 @@ describe("ledger/ledger", () => { return ledger; } - const a1 = NodeAddress.fromParts(["a1"]); + const alias = { + address: NodeAddress.fromParts(["alias"]), + description: "alias", + }; describe("identity updates", () => { describe("createIdentity", () => { @@ -124,7 +127,10 @@ describe("ledger/ledger", () => { it("throws an error given an identity with aliases", () => { const ledger = new Ledger(); let identity = newIdentity("USER", "foo"); - identity = {...identity, aliases: [NodeAddress.empty]}; + identity = { + ...identity, + aliases: [{address: NodeAddress.empty, description: "foo"}], + }; const action = {type: "CREATE_IDENTITY", identity}; const thunk = () => ledger._createIdentity(action); expect(thunk).toThrowError("new identities may not have aliases"); @@ -214,9 +220,9 @@ describe("ledger/ledger", () => { setFakeDate(0); const id = ledger.createIdentity("USER", "foo"); setFakeDate(1); - ledger.addAlias(id, a1); + ledger.addAlias(id, alias); const identity = ledger.account(id).identity; - expect(identity.aliases).toEqual([a1]); + expect(identity.aliases).toEqual([alias]); expect(ledger.eventLog()).toEqual([ { ledgerTimestamp: 0, @@ -234,43 +240,60 @@ describe("ledger/ledger", () => { action: { type: "ADD_ALIAS", identityId: id, - alias: a1, + alias: alias, }, }, ]); }); + it("adding multiple aliases with the same description is fine", () => { + const ledger = new Ledger(); + const id = ledger.createIdentity("USER", "foo"); + const a1 = { + address: NodeAddress.fromParts(["1"]), + description: "alias", + }; + const a2 = { + address: NodeAddress.fromParts(["2"]), + description: "alias", + }; + ledger.addAlias(id, a1); + ledger.addAlias(id, a2); + const identity = ledger.account(id).identity; + expect(identity.aliases).toEqual([a1, a2]); + }); it("errors if there's no matching identity", () => { const ledger = new Ledger(); failsWithoutMutation( ledger, - (l) => l.addAlias(uuid.random(), a1), + (l) => l.addAlias(uuid.random(), alias), "no identity matches id" ); }); it("throws an error if the identity already has that alias", () => { const ledger = new Ledger(); const id = ledger.createIdentity("USER", "foo"); - ledger.addAlias(id, a1); - const thunk = () => ledger.addAlias(id, a1); + ledger.addAlias(id, alias); + const thunk = () => ledger.addAlias(id, alias); failsWithoutMutation(ledger, thunk, "identity already has alias"); }); it("errors if the address is another identity's alias", () => { const ledger = new Ledger(); const id1 = ledger.createIdentity("USER", "foo"); const id2 = ledger.createIdentity("USER", "bar"); - ledger.addAlias(id1, a1); - const thunk = () => ledger.addAlias(id2, a1); + ledger.addAlias(id1, alias); + const thunk = () => ledger.addAlias(id2, alias); failsWithoutMutation( ledger, thunk, - `addAlias: alias ${NodeAddress.toString(a1)} already bound` + `addAlias: alias ${NodeAddress.toString(alias.address)} already bound` ); }); it("errors if the address is the identity's innate address", () => { const ledger = new Ledger(); const id = ledger.createIdentity("USER", "foo"); const identity = ledger.account(id).identity; - const thunk = () => ledger.addAlias(id, identity.address); + const thunk = () => + ledger.addAlias(id, {address: identity.address, description: ""}); failsWithoutMutation( ledger, thunk, @@ -281,7 +304,8 @@ describe("ledger/ledger", () => { }); it("errors if the address is another identity's innate address", () => { const ledger = ledgerWithIdentities(); - const thunk = () => ledger.addAlias(id2, identity1().address); + const thunk = () => + ledger.addAlias(id2, {address: identity1().address, description: ""}); failsWithoutMutation( ledger, thunk, @@ -744,7 +768,7 @@ describe("ledger/ledger", () => { function richLedger(): Ledger { const ledger = ledgerWithIdentities(); setFakeDate(3); - ledger.addAlias(id1, a1); + ledger.addAlias(id1, alias); const distributionId = uuid.fromString("f9xPz9YGH0PuBpPAg2824Q"); const allocationId = uuid.fromString("yYNur0NEEkh7fMaUn6n9QQ"); diff --git a/src/ui/components/AliasSelector.js b/src/ui/components/AliasSelector.js index fa99384..ed00a39 100644 --- a/src/ui/components/AliasSelector.js +++ b/src/ui/components/AliasSelector.js @@ -3,7 +3,7 @@ import React, {useState, useMemo} from "react"; import {useCombobox, useMultipleSelection} from "downshift"; import {Ledger} from "../../ledger/ledger"; -import {type Identity} from "../../ledger/identity"; +import {type Identity, type Alias} from "../../ledger/identity"; import {CredView} from "../../analysis/credView"; import {type NodeAddressT} from "../../core/graph"; import Markdown from "react-markdown"; @@ -16,11 +16,6 @@ type Props = {| +setCurrentIdentity: (Identity) => void, |}; -type Alias = {| - +address: NodeAddressT, - +description: string, -|}; - export function AliasSelector({ currentIdentity, ledger, @@ -50,7 +45,7 @@ export function AliasSelector({ const claimedAddresses: Set = new Set(); for (const {identity} of ledger.accounts()) { claimedAddresses.add(identity.address); - for (const address of identity.aliases) { + for (const {address} of identity.aliases) { claimedAddresses.add(address); } } @@ -103,9 +98,7 @@ export function AliasSelector({ case useCombobox.stateChangeTypes.ItemClick: case useCombobox.stateChangeTypes.InputBlur: if (selectedItem && currentIdentity) { - setLedger( - ledger.addAlias(currentIdentity.id, selectedItem.address) - ); + setLedger(ledger.addAlias(currentIdentity.id, selectedItem)); setCurrentIdentity(ledger.account(currentIdentity.id).identity); setInputValue(""); addSelectedItem(selectedItem);