diff --git a/api/openapi3.yml b/api/openapi3.yml index 12ec938..b391bae 100644 --- a/api/openapi3.yml +++ b/api/openapi3.yml @@ -1834,6 +1834,8 @@ components: - odScoreTotal:DESC - points:ASC - points:DESC + - mostPoints:ASC + - mostPoints:DESC - deletedAt:ASC - deletedAt:DESC maxItems: 2 diff --git a/internal/adapter/repository_bun_player.go b/internal/adapter/repository_bun_player.go index 68f9bc8..d8214d3 100644 --- a/internal/adapter/repository_bun_player.go +++ b/internal/adapter/repository_bun_player.go @@ -280,6 +280,9 @@ func (a listPlayersParamsApplier) applyCursor(q *bun.SelectQuery) *bun.SelectQue case domain.PlayerSortPointsASC, domain.PlayerSortPointsDESC: el.value = cursor.Points() + case domain.PlayerSortMostPointsASC, + domain.PlayerSortMostPointsDESC: + el.value = cursor.MostPoints() case domain.PlayerSortDeletedAtASC, domain.PlayerSortDeletedAtDESC: el.value = cursor.DeletedAt() @@ -326,6 +329,10 @@ func (a listPlayersParamsApplier) sortToColumnAndDirection( return "player.points", sortDirectionASC, nil case domain.PlayerSortPointsDESC: return "player.points", sortDirectionDESC, nil + case domain.PlayerSortMostPointsASC: + return "player.most_points", sortDirectionASC, nil + case domain.PlayerSortMostPointsDESC: + return "player.most_points", sortDirectionDESC, nil case domain.PlayerSortDeletedAtASC: return "COALESCE(player.deleted_at, '0001-01-01 00:00:00+00:00')", sortDirectionASC, nil case domain.PlayerSortDeletedAtDESC: diff --git a/internal/adapter/repository_player_test.go b/internal/adapter/repository_player_test.go index 5ca54a7..8580365 100644 --- a/internal/adapter/repository_player_test.go +++ b/internal/adapter/repository_player_test.go @@ -276,6 +276,56 @@ func testPlayerRepository(t *testing.T, newRepos func(t *testing.T) repositories })) }, }, + { + name: "OK: sort=[mostPoints ASC, serverKey ASC, id ASC]", + params: func(t *testing.T) domain.ListPlayersParams { + t.Helper() + params := domain.NewListPlayersParams() + require.NoError(t, params.SetSort([]domain.PlayerSort{ + domain.PlayerSortMostPointsASC, + domain.PlayerSortServerKeyASC, + domain.PlayerSortIDASC, + })) + return params + }, + assertResult: func(t *testing.T, _ domain.ListPlayersParams, res domain.ListPlayersResult) { + t.Helper() + players := res.Players() + assert.NotEmpty(t, players) + assert.True(t, slices.IsSortedFunc(players, func(a, b domain.Player) int { + return cmp.Or( + cmp.Compare(a.MostPoints(), b.MostPoints()), + cmp.Compare(a.ServerKey(), b.ServerKey()), + cmp.Compare(a.ID(), b.ID()), + ) + })) + }, + }, + { + name: "OK: sort=[mostPoints DESC, serverKey ASC, id ASC]", + params: func(t *testing.T) domain.ListPlayersParams { + t.Helper() + params := domain.NewListPlayersParams() + require.NoError(t, params.SetSort([]domain.PlayerSort{ + domain.PlayerSortMostPointsDESC, + domain.PlayerSortServerKeyASC, + domain.PlayerSortIDASC, + })) + return params + }, + assertResult: func(t *testing.T, _ domain.ListPlayersParams, res domain.ListPlayersResult) { + t.Helper() + players := res.Players() + assert.NotEmpty(t, players) + assert.True(t, slices.IsSortedFunc(players, func(a, b domain.Player) int { + return cmp.Or( + cmp.Compare(a.MostPoints(), b.MostPoints())*-1, + cmp.Compare(a.ServerKey(), b.ServerKey()), + cmp.Compare(a.ID(), b.ID()), + ) + })) + }, + }, { name: "OK: sort=[deletedAt ASC, serverKey ASC, id ASC]", params: func(t *testing.T) domain.ListPlayersParams { diff --git a/internal/adapter/testdata/fixture.yml b/internal/adapter/testdata/fixture.yml index 9380107..9d5e544 100644 --- a/internal/adapter/testdata/fixture.yml +++ b/internal/adapter/testdata/fixture.yml @@ -11,14 +11,14 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - created_at: 2022-03-19T12:00:54.000Z - snapshot_created_at: 2022-03-19T12:00:54.000Z - player_data_synced_at: 2022-03-19T12:00:54.000Z - player_snapshots_created_at: 2022-03-19T12:00:54.000Z - tribe_data_synced_at: 2022-03-19T12:00:54.000Z - tribe_snapshots_created_at: 2022-03-19T12:00:54.000Z - village_data_synced_at: 2022-03-19T12:00:54.000Z - ennoblement_data_synced_at: 2022-03-19T12:00:54.000Z + created_at: "2022-03-19T12:00:54.000Z" + snapshot_created_at: "2022-03-19T12:00:54.000Z" + player_data_synced_at: "2022-03-19T12:00:54.000Z" + player_snapshots_created_at: "2022-03-19T12:00:54.000Z" + tribe_data_synced_at: "2022-03-19T12:00:54.000Z" + tribe_snapshots_created_at: "2022-03-19T12:00:54.000Z" + village_data_synced_at: "2022-03-19T12:00:54.000Z" + ennoblement_data_synced_at: "2022-03-19T12:00:54.000Z" version_code: de - _id: en113 key: en113 @@ -31,14 +31,14 @@ num_player_villages: 41000 num_barbarian_villages: 700 num_bonus_villages: 1024 - created_at: 2021-04-02T16:01:25.000Z - snapshot_created_at: 2021-04-02T16:01:25.000Z - player_data_synced_at: 2021-04-02T16:01:25.000Z - player_snapshots_created_at: 2021-04-02T16:01:25.000Z - tribe_data_synced_at: 2021-04-02T16:01:25.000Z - tribe_snapshots_created_at: 2021-04-02T16:01:25.000Z - village_data_synced_at: 2021-04-02T16:01:25.000Z - ennoblement_data_synced_at: 2021-04-02T16:01:25.000Z + created_at: "2021-04-02T16:01:25.000Z" + snapshot_created_at: "2021-04-02T16:01:25.000Z" + player_data_synced_at: "2021-04-02T16:01:25.000Z" + player_snapshots_created_at: "2021-04-02T16:01:25.000Z" + tribe_data_synced_at: "2021-04-02T16:01:25.000Z" + tribe_snapshots_created_at: "2021-04-02T16:01:25.000Z" + village_data_synced_at: "2021-04-02T16:01:25.000Z" + ennoblement_data_synced_at: "2021-04-02T16:01:25.000Z" version_code: en - _id: it70 key: it70 @@ -51,14 +51,14 @@ num_player_villages: 3200 num_barbarian_villages: 1682 num_bonus_villages: 256 - created_at: 2022-03-19T12:00:04.000Z - snapshot_created_at: 2022-03-19T12:00:04.000Z - player_data_synced_at: 2022-03-19T12:00:04.000Z - player_snapshots_created_at: 2022-03-19T12:00:04.000Z - tribe_data_synced_at: 2022-03-19T12:00:04.000Z - tribe_snapshots_created_at: 2022-03-19T12:00:04.000Z - village_data_synced_at: 2022-03-19T12:00:04.000Z - ennoblement_data_synced_at: 2022-03-19T12:00:04.000Z + created_at: "2022-03-19T12:00:04.000Z" + snapshot_created_at: "2022-03-19T12:00:04.000Z" + player_data_synced_at: "2022-03-19T12:00:04.000Z" + player_snapshots_created_at: "2022-03-19T12:00:04.000Z" + tribe_data_synced_at: "2022-03-19T12:00:04.000Z" + tribe_snapshots_created_at: "2022-03-19T12:00:04.000Z" + village_data_synced_at: "2022-03-19T12:00:04.000Z" + ennoblement_data_synced_at: "2022-03-19T12:00:04.000Z" version_code: it - _id: pl169 key: pl169 @@ -71,14 +71,14 @@ num_player_villages: 48500 num_barbarian_villages: 1574 num_bonus_villages: 2048 - created_at: 2022-03-19T12:01:39.000Z - snapshot_created_at: 2022-03-19T12:01:39.000Z - player_data_synced_at: 2022-03-19T12:01:39.000Z - player_snapshots_created_at: 2022-03-19T12:01:39.000Z - tribe_data_synced_at: 2022-03-19T12:01:39.000Z - tribe_snapshots_created_at: 2022-03-19T12:01:39.000Z - village_data_synced_at: 2022-03-19T12:01:39.000Z - ennoblement_data_synced_at: 2022-03-19T12:01:39.000Z + created_at: "2022-03-19T12:01:39.000Z" + snapshot_created_at: "2022-03-19T12:01:39.000Z" + player_data_synced_at: "2022-03-19T12:01:39.000Z" + player_snapshots_created_at: "2022-03-19T12:01:39.000Z" + tribe_data_synced_at: "2022-03-19T12:01:39.000Z" + tribe_snapshots_created_at: "2022-03-19T12:01:39.000Z" + village_data_synced_at: "2022-03-19T12:01:39.000Z" + ennoblement_data_synced_at: "2022-03-19T12:01:39.000Z" version_code: pl - model: Tribe rows: @@ -101,8 +101,9 @@ all_points: 86151161 rank: 1 dominance: 58.367997781475324 - created_at: 2021-03-07T11:00:51.000Z + created_at: "2021-03-07T11:00:51.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=772 + most_points: 86151161 - rank_att: 4 score_att: 84537872 rank_def: 2 @@ -122,8 +123,9 @@ all_points: 3274015 rank: 5 dominance: 2.3086522462562398 - created_at: 2021-03-16T01:00:54.000Z + created_at: "2021-03-16T01:00:54.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=950 + most_points: 3274015 - rank_att: 2 score_att: 91976316 rank_def: 21 @@ -143,8 +145,9 @@ all_points: 14729501 rank: 2 dominance: 10.461730449251249 - created_at: 2021-04-17T09:01:01.000Z + created_at: "2021-04-17T09:01:01.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=1307 + most_points: 14729501 - rank_att: 3 score_att: 87034216 rank_def: 3 @@ -164,8 +167,9 @@ all_points: 2541853 rank: 7 dominance: 1.8996117581808099 - created_at: 2021-02-26T15:00:43.000Z + created_at: "2021-02-26T15:00:43.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=97 + most_points: 2541853 - rank_att: 5 score_att: 81487046 rank_def: 5 @@ -185,8 +189,9 @@ all_points: 3431912 rank: 4 dominance: 2.4334442595673877 - created_at: 2021-02-24T22:00:55.000Z + created_at: "2021-02-24T22:00:55.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=64 + most_points: 3431912 - rank_att: 1 score_att: 1449031872 rank_def: 1 @@ -206,8 +211,9 @@ all_points: 266237628 rank: 1 dominance: 54.27478896611433 - created_at: 2020-06-22T13:45:46.000Z + created_at: "2020-06-22T13:45:46.000Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=122 + most_points: 266237628 - rank_att: 2 score_att: 508057735 rank_def: 2 @@ -227,8 +233,9 @@ all_points: 7407640 rank: 7 dominance: 1.9335754310863134 - created_at: 2020-06-22T13:45:46.000Z + created_at: "2020-06-22T13:45:46.000Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=112 + most_points: 7407640 - rank_att: 3 score_att: 321486919 rank_def: 2 @@ -248,9 +255,10 @@ all_points: 268858 rank: 30 dominance: 0 - created_at: 2020-06-22T13:45:46.000Z - deleted_at: 2020-12-03T18:01:07Z + created_at: "2020-06-22T13:45:46.000Z" + deleted_at: "2020-12-03T18:01:07Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=1337 + most_points: 268858 - rank_att: 3 score_att: 231146512 rank_def: 5 @@ -270,8 +278,9 @@ all_points: 47701113 rank: 2 dominance: 10.891993939539693 - created_at: 2020-06-22T13:45:46.000Z + created_at: "2020-06-22T13:45:46.000Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=2544 + most_points: 47701113 - rank_att: 5 score_att: 63878040 rank_def: 3 @@ -291,9 +300,10 @@ all_points: 72446 rank: 40 dominance: 0 - created_at: 2020-06-22T13:45:46.000Z - deleted_at: 2020-12-07T04:00:56Z + created_at: "2020-06-22T13:45:46.000Z" + deleted_at: "2020-12-07T04:00:56Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=1115 + most_points: 72446 - rank_att: 1 score_att: 132897 rank_def: 3 @@ -313,8 +323,9 @@ all_points: 182130 rank: 1 dominance: 3.026070763500931 - created_at: 2022-02-21T20:00:07.000Z + created_at: "2022-02-21T20:00:07.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=5 + most_points: 182130 - rank_att: 2 score_att: 73109 rank_def: 6 @@ -334,8 +345,9 @@ all_points: 155593 rank: 2 dominance: 2.653631284916201 - created_at: 2022-02-24T12:00:05.000Z + created_at: "2022-02-24T12:00:05.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=30 + most_points: 155593 - rank_att: 4 score_att: 48518 rank_def: 16 @@ -355,8 +367,9 @@ all_points: 147717 rank: 3 dominance: 3.35195530726257 - created_at: 2022-02-21T19:00:08.000Z + created_at: "2022-02-21T19:00:08.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=1 + most_points: 147717 - rank_att: 5 score_att: 47159 rank_def: 1 @@ -376,8 +389,9 @@ all_points: 142377 rank: 4 dominance: 2.60707635009311 - created_at: 2022-02-21T20:00:07.000Z + created_at: "2022-02-21T20:00:07.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=3 + most_points: 142377 - rank_att: 6 score_att: 46008 rank_def: 2 @@ -397,8 +411,9 @@ all_points: 105512 rank: 5 dominance: 2.1415270018621975 - created_at: 2022-02-24T12:00:05.000Z + created_at: "2022-02-24T12:00:05.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=31 + most_points: 105512 - rank_att: 1 score_att: 669292167 rank_def: 5 @@ -418,8 +433,9 @@ all_points: 143350058 rank: 1 dominance: 29.76912481240106 - created_at: 2021-09-02T23:01:13.000Z + created_at: "2021-09-02T23:01:13.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=28 + most_points: 114277979 - rank_att: 3 score_att: 358150686 rank_def: 3 @@ -439,8 +455,9 @@ all_points: 105576587 rank: 2 dominance: 22.10480870047902 - created_at: 2021-09-02T18:01:08.000Z + created_at: "2021-09-02T18:01:08.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=2 + most_points: 97684589 - rank_att: 2 score_att: 513902873 rank_def: 6 @@ -460,8 +477,9 @@ all_points: 97812820 rank: 3 dominance: 20.87128142924693 - created_at: 2021-09-02T22:00:37.000Z + created_at: "2021-09-02T22:00:37.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=27 + most_points: 91951132 - rank_att: 4 score_att: 228636414 rank_def: 1 @@ -481,8 +499,9 @@ all_points: 30608034 rank: 4 dominance: 7.13595526407763 - created_at: 2021-09-02T18:01:08.000Z + created_at: "2021-09-02T18:01:08.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=1 + most_points: 28417793 - rank_att: 5 score_att: 163168564 rank_def: 13 @@ -502,8 +521,9 @@ all_points: 8188040 rank: 6 dominance: 1.8667379371312267 - created_at: 2021-09-08T02:00:58.000Z + created_at: "2021-09-08T02:00:58.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=122 + most_points: 8188040 - model: Player rows: - rank_att: 10 @@ -521,8 +541,9 @@ points: 9199775 rank: 1 tribe_id: 772 - created_at: 2021-06-25T11:00:53Z + created_at: "2021-06-25T11:00:53Z" profile_url: https://www.internalbenchmark.com/e-markets/proactive/user-centric + most_points: 9199775 - rank_att: 6 score_att: 48477001 rank_def: 11 @@ -538,8 +559,9 @@ points: 7942304 rank: 2 tribe_id: 772 - created_at: 2021-02-24T18:01:02Z + created_at: "2021-02-24T18:01:02Z" profile_url: http://www.dynamicproactive.net/engineer + most_points: 7942304 - rank_att: 3 score_att: 68234776 rank_def: 5 @@ -555,8 +577,9 @@ points: 7564530 rank: 3 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: http://www.centralvisionary.name/transform/deploy + most_points: 7564530 - rank_att: 1 score_att: 81919069 rank_def: 32 @@ -572,8 +595,9 @@ points: 6809027 rank: 4 tribe_id: 772 - created_at: 2021-03-03T09:00:59Z + created_at: "2021-03-03T09:00:59Z" profile_url: https://www.directsyndicate.info/value-added/functionalities/e-business + most_points: 6809027 - rank_att: 4 score_att: 54192613 rank_def: 18 @@ -589,8 +613,9 @@ points: 6276222 rank: 5 tribe_id: 772 - created_at: 2021-03-03T22:00:35Z + created_at: "2021-03-03T22:00:35Z" profile_url: https://www.regionalinfomediaries.io/methodologies + most_points: 6276222 - rank_att: 9 score_att: 32776138 rank_def: 23 @@ -606,8 +631,9 @@ points: 5744486 rank: 6 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: https://www.chiefout-of-the-box.biz/channels/e-services + most_points: 5744486 - rank_att: 8 score_att: 37953835 rank_def: 61 @@ -623,8 +649,9 @@ points: 5174020 rank: 7 tribe_id: 1307 - created_at: 2021-03-03T23:00:42Z + created_at: "2021-03-03T23:00:42Z" profile_url: http://www.internalengage.com/e-services + most_points: 5174020 - rank_att: 7 score_att: 43477145 rank_def: 25 @@ -640,8 +667,9 @@ points: 5016391 rank: 8 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: http://www.dynamiccontent.net/recontextualize/customized/user-centric/reintermediate + most_points: 5016391 - rank_att: 17 score_att: 23327154 rank_def: 64 @@ -657,8 +685,9 @@ points: 4909432 rank: 9 tribe_id: 772 - created_at: 2021-08-11T20:00:45Z + created_at: "2021-08-11T20:00:45Z" profile_url: https://www.principalembrace.biz/cross-media/methodologies/metrics/architectures + most_points: 4909432 - rank_att: 5 score_att: 50199626 rank_def: 6 @@ -674,8 +703,9 @@ points: 4606185 rank: 10 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: https://www.dynamicvisualize.io/sticky/e-business + most_points: 4606185 - rank_att: 23 score_att: 16752677 rank_def: 31 @@ -691,8 +721,9 @@ points: 4564831 rank: 11 tribe_id: 772 - created_at: 2021-03-03T08:00:40Z + created_at: "2021-03-03T08:00:40Z" profile_url: https://www.internalmetrics.net/webservices + most_points: 4564831 - rank_att: 19 score_att: 20471113 rank_def: 53 @@ -708,8 +739,9 @@ points: 3559220 rank: 13 tribe_id: 1307 - created_at: 2021-04-11T09:00:52Z + created_at: "2021-04-11T09:00:52Z" profile_url: https://www.investortarget.com/embrace/deliver + most_points: 3559220 - rank_att: 13 score_att: 24458529 rank_def: 83 @@ -725,8 +757,9 @@ points: 3485616 rank: 14 tribe_id: 772 - created_at: 2021-02-25T02:00:40Z + created_at: "2021-02-25T02:00:40Z" profile_url: http://www.investortransform.name/vortals/one-to-one/viral + most_points: 3485616 - rank_att: 11 score_att: 26156588 rank_def: 24 @@ -742,8 +775,9 @@ points: 3431912 rank: 15 tribe_id: 64 - created_at: 2021-02-24T11:01:08Z + created_at: "2021-02-24T11:01:08Z" profile_url: https://www.internaltransparent.io/value-added + most_points: 3431912 - rank_att: 12 score_att: 24928976 rank_def: 49 @@ -759,8 +793,9 @@ points: 3335177 rank: 16 tribe_id: 772 - created_at: 2021-03-07T04:01:01Z + created_at: "2021-03-07T04:01:01Z" profile_url: https://www.globalcustomized.info/24-365 + most_points: 3335177 - rank_att: 15 score_att: 23825308 rank_def: 95 @@ -776,8 +811,9 @@ points: 3045301 rank: 17 tribe_id: 772 - created_at: 2021-03-04T07:00:57Z + created_at: "2021-03-04T07:00:57Z" profile_url: http://www.dynamicempower.biz/exploit + most_points: 3045301 - rank_att: 21 score_att: 17209806 rank_def: 68 @@ -793,8 +829,9 @@ points: 2977167 rank: 18 tribe_id: 772 - created_at: 2021-03-02T22:00:58Z + created_at: "2021-03-02T22:00:58Z" profile_url: http://www.corporatedeliverables.com/efficient + most_points: 2977167 - rank_att: 18 score_att: 22438664 rank_def: 59 @@ -810,8 +847,9 @@ points: 2585149 rank: 19 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: http://www.centraldisintermediate.name/deliverables/markets + most_points: 2585149 - rank_att: 2 score_att: 73312341 rank_def: 153 @@ -827,8 +865,9 @@ points: 2560358 rank: 20 tribe_id: 772 - created_at: 2021-03-03T12:00:46Z + created_at: "2021-03-03T12:00:46Z" profile_url: https://www.dynamicmonetize.com/matrix/iterate/generate + most_points: 2560358 - rank_att: 16 score_att: 23380368 rank_def: 58 @@ -844,8 +883,9 @@ points: 2504750 rank: 22 tribe_id: 772 - created_at: 2021-06-07T20:00:47Z + created_at: "2021-06-07T20:00:47Z" profile_url: https://www.futureholistic.biz/communities/interactive/enterprise + most_points: 2504750 - rank_att: 22 score_att: 17089210 rank_def: 3 @@ -861,8 +901,9 @@ points: 2445568 rank: 24 tribe_id: 97 - created_at: 2021-02-25T17:00:41Z + created_at: "2021-02-25T17:00:41Z" profile_url: http://www.futurerevolutionize.name/transform/empower/unleash/unleash + most_points: 2445568 - rank_att: 28 score_att: 11631947 rank_def: 73 @@ -878,8 +919,9 @@ points: 2216967 rank: 25 tribe_id: 1307 - created_at: 2021-02-28T13:01:02Z + created_at: "2021-02-28T13:01:02Z" profile_url: http://www.principalscale.com/vortals/b2c + most_points: 2216967 - rank_att: 45 score_att: 2596759 rank_def: 79 @@ -895,8 +937,9 @@ points: 2151423 rank: 26 tribe_id: 1307 - created_at: 2021-04-27T10:00:42Z + created_at: "2021-04-27T10:00:42Z" profile_url: https://www.centralmagnetic.info/deliver/optimize + most_points: 2151423 - rank_att: 29 score_att: 9610308 rank_def: 91 @@ -912,8 +955,9 @@ points: 1889588 rank: 28 tribe_id: 772 - created_at: 2021-08-10T13:00:55Z + created_at: "2021-08-10T13:00:55Z" profile_url: http://www.forwardcross-media.com/embrace + most_points: 1889588 - rank_att: 25 score_att: 12987646 rank_def: 10 @@ -929,8 +973,9 @@ points: 1782960 rank: 30 tribe_id: 950 - created_at: 2021-03-03T09:00:59Z + created_at: "2021-03-03T09:00:59Z" profile_url: https://www.districtdeploy.io/harness/leading-edge + most_points: 1782960 - rank_att: 41 score_att: 4196174 rank_def: 78 @@ -946,8 +991,9 @@ points: 1623780 rank: 31 tribe_id: 1307 - created_at: 2021-04-12T08:01:05Z + created_at: "2021-04-12T08:01:05Z" profile_url: https://www.productmindshare.io/repurpose/monetize/synergize/viral + most_points: 1623780 - rank_att: 40 score_att: 4338597 rank_def: 4 @@ -963,8 +1009,9 @@ points: 1360052 rank: 32 tribe_id: 950 - created_at: 2021-03-03T14:00:59Z + created_at: "2021-03-03T14:00:59Z" profile_url: http://www.directstrategize.org/grow + most_points: 1360052 - rank_att: 146 score_att: 1362 rank_def: 1 @@ -980,8 +1027,9 @@ points: 575920 rank: 44 tribe_id: 772 - created_at: 2021-08-18T19:00:38Z + created_at: "2021-08-18T19:00:38Z" profile_url: http://www.productmission-critical.info/seamless/incentivize + most_points: 575920 - rank_att: 69 score_att: 864699 rank_def: 159 @@ -997,8 +1045,9 @@ points: 558952 rank: 46 tribe_id: 772 - created_at: 2021-08-12T02:00:50Z + created_at: "2021-08-12T02:00:50Z" profile_url: https://www.humanbleeding-edge.io/action-items/iterate/sexy + most_points: 558952 - rank_att: 27 score_att: 11849591 rank_def: 2 @@ -1014,8 +1063,9 @@ points: 96285 rank: 73 tribe_id: 97 - created_at: 2021-02-28T13:01:02Z + created_at: "2021-02-28T13:01:02Z" profile_url: http://www.investormindshare.net/bricks-and-clicks + most_points: 96285 - rank_att: 35 score_att: 6037932 rank_def: 20 @@ -1031,8 +1081,9 @@ points: 82311 rank: 76 tribe_id: 950 - created_at: 2021-06-19T21:00:58Z + created_at: "2021-06-19T21:00:58Z" profile_url: https://www.principalwhiteboard.io/cultivate/markets + most_points: 82311 - rank_att: 26 score_att: 12109017 rank_def: 7 @@ -1048,8 +1099,9 @@ points: 48692 rank: 82 tribe_id: 950 - created_at: 2021-03-07T21:00:40Z + created_at: "2021-03-07T21:00:40Z" profile_url: http://www.centralsyndicate.com/harness/visionary/b2c + most_points: 48692 - rank_att: 79 score_att: 371697 rank_def: 105 @@ -1065,8 +1117,9 @@ points: 4091 rank: 122 tribe_id: 1307 - created_at: 2021-03-01T06:00:55Z + created_at: "2021-03-01T06:00:55Z" profile_url: http://www.dynamictechnologies.org/bandwidth/exploit/optimize/bandwidth + most_points: 4091 - rank_att: 55 score_att: 1794284 rank_def: 94 @@ -1082,8 +1135,9 @@ points: 0 rank: 177 tribe_id: 64 - created_at: 2021-02-25T13:00:44Z + created_at: "2021-02-25T13:00:44Z" profile_url: https://www.forwardviral.org/synergistic/aggregate/channels + most_points: 0 - rank_att: 1 score_att: 238728441 rank_def: 1 @@ -1099,8 +1153,9 @@ points: 30831484 rank: 1 tribe_id: 122 - created_at: 2020-04-01T05:48:57Z + created_at: "2020-04-01T05:48:57Z" profile_url: https://www.futureclicks-and-mortar.name/b2c/supply-chains + most_points: 30831484 - rank_att: 2 score_att: 177308501 rank_def: 18 @@ -1116,8 +1171,9 @@ points: 18581487 rank: 2 tribe_id: 122 - created_at: 2020-04-07T11:09:23Z + created_at: "2020-04-07T11:09:23Z" profile_url: http://www.globalintuitive.net/solutions + most_points: 18581487 - rank_att: 16 score_att: 43305549 rank_def: 5 @@ -1133,8 +1189,9 @@ points: 17185328 rank: 3 tribe_id: 122 - created_at: 2020-04-08T02:10:08Z + created_at: "2020-04-08T02:10:08Z" profile_url: https://www.internaldrive.net/synergies + most_points: 17185328 - rank_att: 16 score_att: 43305549 rank_def: 5 @@ -1150,9 +1207,10 @@ points: 17185328 rank: 3 tribe_id: 0 - created_at: 2020-04-08T02:10:08Z - deleted_at: 2020-12-03T18:01:07Z + created_at: "2020-04-08T02:10:08Z" + deleted_at: "2020-12-03T18:01:07Z" profile_url: http://www.forwardweb-enabled.io/paradigms/roi/turn-key/dynamic + most_points: 17185328 - rank_att: 8 score_att: 78782855 rank_def: 27 @@ -1168,8 +1226,9 @@ points: 16287830 rank: 4 tribe_id: 122 - created_at: 2020-04-13T06:15:34Z + created_at: "2020-04-13T06:15:34Z" profile_url: https://www.centralsolutions.io/deliverables/e-enable/b2b + most_points: 16287830 - rank_att: 8 score_att: 78782855 rank_def: 27 @@ -1185,9 +1244,10 @@ points: 16287830 rank: 4 tribe_id: 0 - created_at: 2020-04-13T06:15:34Z - deleted_at: 2020-06-22T13:45:46Z + created_at: "2020-04-13T06:15:34Z" + deleted_at: "2020-06-22T13:45:46Z" profile_url: https://www.dynamice-commerce.com/implement/portals/vertical/exploit + most_points: 16287830 - rank_att: 6 score_att: 95156312 rank_def: 23 @@ -1203,8 +1263,9 @@ points: 15726384 rank: 5 tribe_id: 122 - created_at: 2020-04-02T20:41:50Z + created_at: "2020-04-02T20:41:50Z" profile_url: http://www.globalstrategize.io/streamline + most_points: 15726384 - rank_att: 3 score_att: 121092867 rank_def: 33 @@ -1220,8 +1281,9 @@ points: 15126767 rank: 6 tribe_id: 122 - created_at: 2020-04-01T10:17:39Z + created_at: "2020-04-01T10:17:39Z" profile_url: http://www.regionalmetrics.com/action-items/convergence/best-of-breed/unleash + most_points: 15126767 - rank_att: 10 score_att: 75464147 rank_def: 16 @@ -1237,8 +1299,9 @@ points: 14916914 rank: 7 tribe_id: 122 - created_at: 2020-04-14T20:04:32Z + created_at: "2020-04-14T20:04:32Z" profile_url: http://www.productmaximize.org/scalable/orchestrate + most_points: 14916914 - rank_att: 29 score_att: 27919397 rank_def: 72 @@ -1254,8 +1317,9 @@ points: 14458961 rank: 8 tribe_id: 122 - created_at: 2020-04-06T01:40:26Z + created_at: "2020-04-06T01:40:26Z" profile_url: https://www.chiefworld-class.org/robust/interfaces/robust + most_points: 14458961 - rank_att: 7 score_att: 83548314 rank_def: 10 @@ -1271,8 +1335,9 @@ points: 13509399 rank: 9 tribe_id: 122 - created_at: 2020-04-15T17:05:34Z + created_at: "2020-04-15T17:05:34Z" profile_url: http://www.corporateproactive.name/platforms/deploy + most_points: 13509399 - rank_att: 37 score_att: 23277234 rank_def: 45 @@ -1288,8 +1353,9 @@ points: 12224365 rank: 10 tribe_id: 122 - created_at: 2020-04-01T16:37:11Z + created_at: "2020-04-01T16:37:11Z" profile_url: http://www.principalsyndicate.biz/visionary + most_points: 12224365 - rank_att: 12 score_att: 65687303 rank_def: 46 @@ -1305,8 +1371,9 @@ points: 12149690 rank: 11 tribe_id: 122 - created_at: 2020-04-01T05:00:16Z + created_at: "2020-04-01T05:00:16Z" profile_url: http://www.principalb2b.net/e-business/deliver/e-markets + most_points: 12149690 - rank_att: 4 score_att: 110546924 rank_def: 13 @@ -1322,8 +1389,9 @@ points: 11113524 rank: 12 tribe_id: 122 - created_at: 2020-04-10T20:06:25Z + created_at: "2020-04-10T20:06:25Z" profile_url: https://www.globalb2b.org/b2b/deliver/relationships + most_points: 11113524 - rank_att: 15 score_att: 51470783 rank_def: 9 @@ -1339,8 +1407,9 @@ points: 10956298 rank: 13 tribe_id: 122 - created_at: 2020-04-01T08:34:14Z + created_at: "2020-04-01T08:34:14Z" profile_url: http://www.chiefoptimize.org/experiences/back-end/collaborative + most_points: 10956298 - rank_att: 28 score_att: 28111653 rank_def: 15 @@ -1356,8 +1425,9 @@ points: 10889334 rank: 14 tribe_id: 122 - created_at: 2020-04-03T18:37:57Z + created_at: "2020-04-03T18:37:57Z" profile_url: http://www.dynamicsynergistic.io/monetize + most_points: 10889334 - rank_att: 14 score_att: 55398523 rank_def: 48 @@ -1373,8 +1443,9 @@ points: 10502929 rank: 15 tribe_id: 122 - created_at: 2020-05-09T03:49:46Z + created_at: "2020-05-09T03:49:46Z" profile_url: https://www.forwardweb-readiness.io/reinvent/monetize + most_points: 10502929 - rank_att: 11 score_att: 70419552 rank_def: 7 @@ -1390,8 +1461,9 @@ points: 9967542 rank: 16 tribe_id: 122 - created_at: 2020-03-31T06:07:18Z + created_at: "2020-03-31T06:07:18Z" profile_url: http://www.leadniches.name/empower/mission-critical/integrate/evolve + most_points: 9967542 - rank_att: 35 score_att: 25123225 rank_def: 112 @@ -1407,8 +1479,9 @@ points: 9401906 rank: 17 tribe_id: 2544 - created_at: 2020-05-22T15:49:05Z + created_at: "2020-05-22T15:49:05Z" profile_url: http://www.humanchannels.com/distributed/morph/deliverables + most_points: 9401906 - rank_att: 20 score_att: 35490711 rank_def: 86 @@ -1424,8 +1497,9 @@ points: 9179296 rank: 18 tribe_id: 2544 - created_at: 2020-04-11T10:30:20Z + created_at: "2020-04-11T10:30:20Z" profile_url: http://www.dynamicdeploy.info/customized + most_points: 9179296 - rank_att: 18 score_att: 38142399 rank_def: 19 @@ -1441,8 +1515,9 @@ points: 8444247 rank: 19 tribe_id: 122 - created_at: 2020-04-02T02:02:00Z + created_at: "2020-04-02T02:02:00Z" profile_url: https://www.directgrow.net/functionalities + most_points: 8444247 - rank_att: 22 score_att: 33892144 rank_def: 50 @@ -1458,8 +1533,9 @@ points: 8136128 rank: 20 tribe_id: 122 - created_at: 2020-04-19T20:12:30Z + created_at: "2020-04-19T20:12:30Z" profile_url: http://www.principaldrive.info/real-time/benchmark/unleash/revolutionary + most_points: 8136128 - rank_att: 24 score_att: 30215760 rank_def: 76 @@ -1475,8 +1551,9 @@ points: 7908145 rank: 21 tribe_id: 122 - created_at: 2020-04-11T18:22:06Z + created_at: "2020-04-11T18:22:06Z" profile_url: https://www.districtwebservices.io/platforms/efficient + most_points: 7908145 - rank_att: 31 score_att: 26410405 rank_def: 79 @@ -1492,8 +1569,9 @@ points: 7753685 rank: 22 tribe_id: 2544 - created_at: 2020-05-19T15:09:34Z + created_at: "2020-05-19T15:09:34Z" profile_url: http://www.nationalworld-class.net/unleash + most_points: 7753685 - rank_att: 25 score_att: 29580638 rank_def: 38 @@ -1509,8 +1587,9 @@ points: 7320872 rank: 23 tribe_id: 122 - created_at: 2020-03-24T03:52:15Z + created_at: "2020-03-24T03:52:15Z" profile_url: http://www.chiefmesh.info/e-business/matrix/b2b/enable + most_points: 7320872 - rank_att: 48 score_att: 14720196 rank_def: 69 @@ -1526,8 +1605,9 @@ points: 4300119 rank: 33 tribe_id: 2544 - created_at: 2020-04-03T08:17:44Z + created_at: "2020-04-03T08:17:44Z" profile_url: https://www.forwardharness.net/benchmark/magnetic/e-business/drive + most_points: 4300119 - rank_att: 68 score_att: 5429484 rank_def: 142 @@ -1543,8 +1623,9 @@ points: 3992739 rank: 36 tribe_id: 2544 - created_at: 2020-04-14T20:12:27Z + created_at: "2020-04-14T20:12:27Z" profile_url: http://www.corporateinfomediaries.info/out-of-the-box + most_points: 3992739 - rank_att: 51 score_att: 11793759 rank_def: 151 @@ -1560,8 +1641,9 @@ points: 3458362 rank: 39 tribe_id: 2544 - created_at: 2020-04-06T09:09:37Z + created_at: "2020-04-06T09:09:37Z" profile_url: https://www.dynamicenterprise.net/transparent + most_points: 3458362 - rank_att: 32 score_att: 26195200 rank_def: 21 @@ -1577,8 +1659,9 @@ points: 3442528 rank: 40 tribe_id: 2544 - created_at: 2020-05-11T16:20:42Z + created_at: "2020-05-11T16:20:42Z" profile_url: https://www.internalrepurpose.info/real-time + most_points: 3442528 - rank_att: 17 score_att: 42630169 rank_def: 4 @@ -1594,8 +1677,9 @@ points: 2328167 rank: 45 tribe_id: 112 - created_at: 2020-03-30T03:02:46Z + created_at: "2020-03-30T03:02:46Z" profile_url: https://www.nationalsexy.info/implement/viral/expedite + most_points: 2328167 - rank_att: 43 score_att: 16900171 rank_def: 35 @@ -1611,8 +1695,9 @@ points: 2035247 rank: 49 tribe_id: 112 - created_at: 2020-03-28T14:47:04Z + created_at: "2020-03-28T14:47:04Z" profile_url: http://www.directscale.net/bleeding-edge + most_points: 2035247 - rank_att: 53 score_att: 10728652 rank_def: 119 @@ -1628,8 +1713,9 @@ points: 1992849 rank: 51 tribe_id: 2544 - created_at: 2020-04-09T21:47:29Z + created_at: "2020-04-09T21:47:29Z" profile_url: http://www.internationalbrand.com/supply-chains/front-end + most_points: 1992849 - rank_att: 63 score_att: 6155696 rank_def: 42 @@ -1645,8 +1731,9 @@ points: 1870534 rank: 55 tribe_id: 2544 - created_at: 2020-05-04T03:17:50Z + created_at: "2020-05-04T03:17:50Z" profile_url: http://www.productgrow.com/content + most_points: 1870534 - rank_att: 45 score_att: 16309885 rank_def: 55 @@ -1662,8 +1749,9 @@ points: 1642528 rank: 62 tribe_id: 2544 - created_at: 2020-04-16T16:55:54Z + created_at: "2020-04-16T16:55:54Z" profile_url: https://www.nationalaggregate.info/schemas/bleeding-edge/portals + most_points: 1642528 - rank_att: 52 score_att: 11180243 rank_def: 28 @@ -1679,8 +1767,9 @@ points: 1180598 rank: 69 tribe_id: 112 - created_at: 2020-03-28T04:42:18Z + created_at: "2020-03-28T04:42:18Z" profile_url: https://www.dynamicexpedite.io/deliverables/impactful + most_points: 1180598 - rank_att: 23 score_att: 33590082 rank_def: 2 @@ -1696,8 +1785,9 @@ points: 725485 rank: 78 tribe_id: 112 - created_at: 2020-04-08T15:11:20Z + created_at: "2020-04-08T15:11:20Z" profile_url: http://www.nationalefficient.com/grow + most_points: 725485 - rank_att: 85 score_att: 1341627 rank_def: 80 @@ -1713,8 +1803,9 @@ points: 666567 rank: 79 tribe_id: 2544 - created_at: 2020-04-23T04:21:21Z + created_at: "2020-04-23T04:21:21Z" profile_url: http://www.futuresynergize.net/impactful/killer/drive + most_points: 666567 - rank_att: 59 score_att: 6840535 rank_def: 29 @@ -1730,8 +1821,9 @@ points: 580222 rank: 85 tribe_id: 112 - created_at: 2020-04-07T14:38:10Z + created_at: "2020-04-07T14:38:10Z" profile_url: http://www.investordisintermediate.name/web-readiness/virtual/systems + most_points: 580222 - rank_att: 47 score_att: 14830290 rank_def: 17 @@ -1747,8 +1839,9 @@ points: 557921 rank: 86 tribe_id: 112 - created_at: 2020-03-28T18:34:56Z + created_at: "2020-03-28T18:34:56Z" profile_url: https://www.dynamic24-365.com/extensible + most_points: 557921 - rank_att: 15 score_att: 14555 rank_def: 88 @@ -1764,8 +1857,9 @@ points: 29518 rank: 1 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.dynamicb2b.com/roi/e-business/b2c/innovative + most_points: 29518 - rank_att: 266 score_att: 47 rank_def: 94 @@ -1781,8 +1875,9 @@ points: 25244 rank: 2 tribe_id: 1 - created_at: 2022-03-02T11:00:08Z + created_at: "2022-03-02T11:00:08Z" profile_url: https://www.directniches.com/unleash + most_points: 25244 - rank_att: 7 score_att: 21493 rank_def: 61 @@ -1798,8 +1893,9 @@ points: 19164 rank: 3 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.productproductize.info/user-centric + most_points: 19164 - rank_att: 16 score_att: 13228 rank_def: 109 @@ -1815,8 +1911,9 @@ points: 17179 rank: 6 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.investorcross-platform.org/next-generation/dynamic + most_points: 17179 - rank_att: 33 score_att: 5447 rank_def: 50 @@ -1832,8 +1929,9 @@ points: 17035 rank: 7 tribe_id: 31 - created_at: 2022-02-22T22:00:06Z + created_at: "2022-02-22T22:00:06Z" profile_url: https://www.centraldisintermediate.name/engineer/world-class + most_points: 17035 - rank_att: 12 score_att: 15800 rank_def: 0 @@ -1849,8 +1947,9 @@ points: 15523 rank: 8 tribe_id: 30 - created_at: 2022-02-24T20:00:07Z + created_at: "2022-02-24T20:00:07Z" profile_url: http://www.nationalengage.org/unleash/mesh/front-end/back-end + most_points: 15523 - rank_att: 5 score_att: 23950 rank_def: 303 @@ -1866,8 +1965,9 @@ points: 14830 rank: 10 tribe_id: 5 - created_at: 2022-02-24T14:00:02Z + created_at: "2022-02-24T14:00:02Z" profile_url: http://www.internaldisintermediate.net/monetize/partnerships/communities/metrics + most_points: 14830 - rank_att: 0 score_att: 0 rank_def: 275 @@ -1883,8 +1983,9 @@ points: 14588 rank: 12 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.chiefproactive.io/collaborative/orchestrate/mindshare/whiteboard + most_points: 14588 - rank_att: 61 score_att: 2640 rank_def: 308 @@ -1900,8 +2001,9 @@ points: 13451 rank: 13 tribe_id: 3 - created_at: 2022-02-23T13:00:08Z + created_at: "2022-02-23T13:00:08Z" profile_url: https://www.directgranular.biz/sexy/plug-and-play + most_points: 13451 - rank_att: 9 score_att: 19560 rank_def: 321 @@ -1917,8 +2019,9 @@ points: 13325 rank: 14 tribe_id: 5 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: https://www.directfrictionless.net/scale/enhance/convergence/enterprise + most_points: 13325 - rank_att: 2 score_att: 31525 rank_def: 559 @@ -1934,8 +2037,9 @@ points: 13357 rank: 15 tribe_id: 5 - created_at: 2022-02-22T13:00:09Z + created_at: "2022-02-22T13:00:09Z" profile_url: https://www.dynamiccompelling.biz/partnerships + most_points: 13357 - rank_att: 220 score_att: 133 rank_def: 210 @@ -1951,8 +2055,9 @@ points: 12875 rank: 16 tribe_id: 30 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: http://www.regionalintegrate.info/deliver/impactful/grow/supply-chains + most_points: 12875 - rank_att: 14 score_att: 15191 rank_def: 453 @@ -1968,8 +2073,9 @@ points: 12658 rank: 18 tribe_id: 30 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.leadvalue-added.name/synergize/platforms + most_points: 12658 - rank_att: 29 score_att: 6475 rank_def: 481 @@ -1985,8 +2091,9 @@ points: 12311 rank: 19 tribe_id: 30 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.internalgenerate.biz/scale/utilize/drive/functionalities + most_points: 12311 - rank_att: 6 score_att: 22879 rank_def: 186 @@ -2002,8 +2109,9 @@ points: 11668 rank: 20 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.productproductize.com/synergize/transform + most_points: 11668 - rank_att: 194 score_att: 225 rank_def: 3 @@ -2019,8 +2127,9 @@ points: 11142 rank: 22 tribe_id: 5 - created_at: 2022-03-02T12:00:01Z + created_at: "2022-03-02T12:00:01Z" profile_url: https://www.nationalrepurpose.org/metrics/networks/facilitate + most_points: 11142 - rank_att: 1 score_att: 32384 rank_def: 185 @@ -2036,8 +2145,9 @@ points: 10628 rank: 25 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.internationaldeploy.com/robust + most_points: 10628 - rank_att: 13 score_att: 15266 rank_def: 571 @@ -2053,8 +2163,9 @@ points: 10602 rank: 26 tribe_id: 30 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.futureproactive.io/robust/global/turn-key + most_points: 10602 - rank_att: 31 score_att: 6272 rank_def: 304 @@ -2070,8 +2181,9 @@ points: 10339 rank: 29 tribe_id: 5 - created_at: 2022-02-22T13:00:09Z + created_at: "2022-02-22T13:00:09Z" profile_url: https://www.leadtechnologies.name/schemas/wireless/platforms + most_points: 10339 - rank_att: 0 score_att: 0 rank_def: 485 @@ -2087,8 +2199,9 @@ points: 9924 rank: 30 tribe_id: 5 - created_at: 2022-02-24T16:00:04Z + created_at: "2022-02-24T16:00:04Z" profile_url: https://www.internationalbrand.info/synergistic/grow/e-enable/supply-chains + most_points: 9924 - rank_att: 36 score_att: 4969 rank_def: 221 @@ -2104,8 +2217,9 @@ points: 9712 rank: 31 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: http://www.centralopen-source.name/front-end/channels/revolutionize/seamless + most_points: 9712 - rank_att: 40 score_att: 4277 rank_def: 195 @@ -2121,8 +2235,9 @@ points: 9631 rank: 32 tribe_id: 1 - created_at: 2022-02-28T23:00:08Z + created_at: "2022-02-28T23:00:08Z" profile_url: https://www.legacycompelling.name/initiatives/incubate/e-commerce/best-of-breed + most_points: 9631 - rank_att: 264 score_att: 50 rank_def: 191 @@ -2138,8 +2253,9 @@ points: 9549 rank: 33 tribe_id: 1 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: https://www.directinnovative.name/solutions + most_points: 9549 - rank_att: 148 score_att: 411 rank_def: 48 @@ -2155,8 +2271,9 @@ points: 9380 rank: 34 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.internalmodels.info/strategize/leverage/24-7 + most_points: 9380 - rank_att: 248 score_att: 77 rank_def: 460 @@ -2172,8 +2289,9 @@ points: 9354 rank: 35 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.chieffacilitate.io/transparent + most_points: 9354 - rank_att: 326 score_att: 8 rank_def: 298 @@ -2189,8 +2307,9 @@ points: 9200 rank: 37 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.corporatepartnerships.io/experiences/open-source + most_points: 9200 - rank_att: 11 score_att: 16657 rank_def: 227 @@ -2206,8 +2325,9 @@ points: 9122 rank: 38 tribe_id: 30 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: https://www.nationalintegrated.name/efficient/enable/extend/mesh + most_points: 9122 - rank_att: 30 score_att: 6328 rank_def: 530 @@ -2223,8 +2343,9 @@ points: 9019 rank: 39 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.legacymarkets.biz/clicks-and-mortar/productize/initiatives/synergies + most_points: 9019 - rank_att: 170 score_att: 275 rank_def: 289 @@ -2240,8 +2361,9 @@ points: 9021 rank: 40 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.seniorfrictionless.info/benchmark/visionary + most_points: 9021 - rank_att: 130 score_att: 573 rank_def: 0 @@ -2257,8 +2379,9 @@ points: 8616 rank: 41 tribe_id: 3 - created_at: 2022-02-22T10:00:02Z + created_at: "2022-02-22T10:00:02Z" profile_url: http://www.internalportals.biz/extend/visionary/mission-critical/transition + most_points: 8616 - rank_att: 257 score_att: 56 rank_def: 207 @@ -2274,8 +2397,9 @@ points: 8276 rank: 44 tribe_id: 3 - created_at: 2022-02-22T10:00:02Z + created_at: "2022-02-22T10:00:02Z" profile_url: http://www.forwardsticky.name/repurpose + most_points: 8276 - rank_att: 0 score_att: 0 rank_def: 258 @@ -2291,8 +2415,9 @@ points: 8239 rank: 45 tribe_id: 30 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: http://www.seniorredefine.net/deploy/productize + most_points: 8239 - rank_att: 82 score_att: 1707 rank_def: 496 @@ -2308,8 +2433,9 @@ points: 8099 rank: 46 tribe_id: 5 - created_at: 2022-02-23T17:00:10Z + created_at: "2022-02-23T17:00:10Z" profile_url: https://www.internationalreintermediate.org/aggregate/compelling/proactive + most_points: 8099 - rank_att: 60 score_att: 2712 rank_def: 500 @@ -2325,8 +2451,9 @@ points: 7885 rank: 47 tribe_id: 31 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: https://www.corporatecompelling.io/infomediaries/impactful/seamless + most_points: 7885 - rank_att: 270 score_att: 45 rank_def: 623 @@ -2342,8 +2469,9 @@ points: 7728 rank: 49 tribe_id: 1 - created_at: 2022-03-02T10:00:10Z + created_at: "2022-03-02T10:00:10Z" profile_url: https://www.regionalbleeding-edge.info/one-to-one/systems/e-commerce + most_points: 7728 - rank_att: 101 score_att: 1179 rank_def: 97 @@ -2359,8 +2487,9 @@ points: 7407 rank: 50 tribe_id: 30 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.internationalincubate.name/implement/deliverables/models/killer + most_points: 7407 - rank_att: 129 score_att: 575 rank_def: 0 @@ -2376,8 +2505,9 @@ points: 7406 rank: 52 tribe_id: 5 - created_at: 2022-02-23T08:00:05Z + created_at: "2022-02-23T08:00:05Z" profile_url: http://www.futureportals.biz/frictionless/wireless + most_points: 7406 - rank_att: 22 score_att: 9875 rank_def: 17 @@ -2393,8 +2523,9 @@ points: 7064 rank: 53 tribe_id: 5 - created_at: 2022-02-24T13:00:11Z + created_at: "2022-02-24T13:00:11Z" profile_url: http://www.directroi.com/harness/dot-com + most_points: 7064 - rank_att: 185 score_att: 235 rank_def: 0 @@ -2410,8 +2541,9 @@ points: 6930 rank: 54 tribe_id: 5 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.humanenable.com/revolutionary/platforms/benchmark + most_points: 6930 - rank_att: 107 score_att: 919 rank_def: 419 @@ -2427,8 +2559,9 @@ points: 6328 rank: 58 tribe_id: 3 - created_at: 2022-02-22T22:00:06Z + created_at: "2022-02-22T22:00:06Z" profile_url: http://www.chiefwireless.io/seize/robust + most_points: 6328 - rank_att: 70 score_att: 2200 rank_def: 0 @@ -2444,8 +2577,9 @@ points: 6308 rank: 59 tribe_id: 5 - created_at: 2022-02-25T12:00:01Z + created_at: "2022-02-25T12:00:01Z" profile_url: http://www.regionalviral.com/enterprise/visionary/target/value-added + most_points: 6308 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2461,8 +2595,9 @@ points: 6205 rank: 60 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.internationaluser-centric.com/platforms + most_points: 6205 - rank_att: 263 score_att: 50 rank_def: 563 @@ -2478,8 +2613,9 @@ points: 6105 rank: 63 tribe_id: 30 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: http://www.internalapplications.com/initiatives/bleeding-edge/innovative + most_points: 6105 - rank_att: 142 score_att: 454 rank_def: 458 @@ -2495,8 +2631,9 @@ points: 6034 rank: 65 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.forwardcollaborative.biz/killer/syndicate/scalable/24-365 + most_points: 6034 - rank_att: 193 score_att: 227 rank_def: 0 @@ -2512,8 +2649,9 @@ points: 5949 rank: 68 tribe_id: 3 - created_at: 2022-02-22T16:00:03Z + created_at: "2022-02-22T16:00:03Z" profile_url: http://www.districtbest-of-breed.biz/webservices/e-services + most_points: 5949 - rank_att: 0 score_att: 0 rank_def: 1 @@ -2529,8 +2667,9 @@ points: 5668 rank: 71 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: http://www.regionalstrategize.biz/disintermediate + most_points: 5668 - rank_att: 317 score_att: 10 rank_def: 0 @@ -2546,8 +2685,9 @@ points: 5659 rank: 73 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.centralvisualize.name/seamless/24-365/enhance/enterprise + most_points: 5659 - rank_att: 208 score_att: 167 rank_def: 0 @@ -2563,8 +2703,9 @@ points: 5371 rank: 76 tribe_id: 3 - created_at: 2022-03-02T13:00:08Z + created_at: "2022-03-02T13:00:08Z" profile_url: http://www.principaltransparent.info/markets + most_points: 5371 - rank_att: 283 score_att: 36 rank_def: 0 @@ -2580,8 +2721,9 @@ points: 5321 rank: 77 tribe_id: 5 - created_at: 2022-02-22T13:00:09Z + created_at: "2022-02-22T13:00:09Z" profile_url: http://www.legacyback-end.com/leading-edge + most_points: 5321 - rank_att: 215 score_att: 141 rank_def: 0 @@ -2597,8 +2739,9 @@ points: 5258 rank: 78 tribe_id: 30 - created_at: 2022-02-22T20:00:05Z + created_at: "2022-02-22T20:00:05Z" profile_url: https://www.principale-business.biz/e-commerce/applications + most_points: 5258 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2614,8 +2757,9 @@ points: 5249 rank: 79 tribe_id: 30 - created_at: 2022-02-27T20:00:09Z + created_at: "2022-02-27T20:00:09Z" profile_url: http://www.productbandwidth.info/matrix + most_points: 5249 - rank_att: 0 score_att: 0 rank_def: 573 @@ -2631,8 +2775,9 @@ points: 5117 rank: 82 tribe_id: 3 - created_at: 2022-02-23T12:00:06Z + created_at: "2022-02-23T12:00:06Z" profile_url: http://www.nationalrepurpose.com/seamless + most_points: 5117 - rank_att: 0 score_att: 0 rank_def: 281 @@ -2648,8 +2793,9 @@ points: 5091 rank: 84 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.directinnovative.org/models + most_points: 5091 - rank_att: 34 score_att: 5213 rank_def: 348 @@ -2665,8 +2811,9 @@ points: 5071 rank: 85 tribe_id: 1 - created_at: 2022-03-01T22:00:11Z + created_at: "2022-03-01T22:00:11Z" profile_url: https://www.customerexploit.net/facilitate + most_points: 5071 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2682,8 +2829,9 @@ points: 5194 rank: 87 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.chiefcross-platform.org/expedite/strategic/streamline/drive + most_points: 5194 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2699,8 +2847,9 @@ points: 4994 rank: 88 tribe_id: 30 - created_at: 2022-02-25T16:00:01Z + created_at: "2022-02-25T16:00:01Z" profile_url: http://www.legacyintegrate.name/magnetic/scale + most_points: 4994 - rank_att: 0 score_att: 0 rank_def: 242 @@ -2716,8 +2865,9 @@ points: 4944 rank: 90 tribe_id: 5 - created_at: 2022-02-22T08:00:06Z + created_at: "2022-02-22T08:00:06Z" profile_url: https://www.leadmaximize.com/incentivize/impactful/b2b + most_points: 4944 - rank_att: 46 score_att: 3700 rank_def: 0 @@ -2733,8 +2883,9 @@ points: 4916 rank: 91 tribe_id: 30 - created_at: 2022-03-10T12:00:03Z + created_at: "2022-03-10T12:00:03Z" profile_url: https://www.regionalkiller.net/e-markets + most_points: 4916 - rank_att: 135 score_att: 516 rank_def: 36 @@ -2750,8 +2901,9 @@ points: 4890 rank: 92 tribe_id: 1 - created_at: 2022-02-21T21:00:09Z + created_at: "2022-02-21T21:00:09Z" profile_url: https://www.directsticky.name/end-to-end + most_points: 4890 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2767,8 +2919,9 @@ points: 4873 rank: 93 tribe_id: 1 - created_at: 2022-02-22T21:00:11Z + created_at: "2022-02-22T21:00:11Z" profile_url: https://www.futureinnovative.io/recontextualize/turn-key/methodologies + most_points: 4873 - rank_att: 0 score_att: 0 rank_def: 151 @@ -2784,8 +2937,9 @@ points: 4862 rank: 94 tribe_id: 30 - created_at: 2022-02-24T14:00:02Z + created_at: "2022-02-24T14:00:02Z" profile_url: https://www.futuresupply-chains.name/efficient/dot-com/robust + most_points: 4862 - rank_att: 0 score_att: 0 rank_def: 456 @@ -2801,8 +2955,9 @@ points: 4833 rank: 95 tribe_id: 30 - created_at: 2022-02-22T21:00:11Z + created_at: "2022-02-22T21:00:11Z" profile_url: https://www.internalengineer.io/networks/relationships + most_points: 4833 - rank_att: 104 score_att: 1054 rank_def: 197 @@ -2818,8 +2973,9 @@ points: 4821 rank: 96 tribe_id: 5 - created_at: 2022-02-24T16:00:04Z + created_at: "2022-02-24T16:00:04Z" profile_url: https://www.internalengage.net/plug-and-play + most_points: 4821 - rank_att: 301 score_att: 19 rank_def: 203 @@ -2835,8 +2991,9 @@ points: 4629 rank: 106 tribe_id: 3 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: http://www.futuree-services.biz/supply-chains/supply-chains + most_points: 4629 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2852,8 +3009,9 @@ points: 4526 rank: 107 tribe_id: 30 - created_at: 2022-02-24T16:00:04Z + created_at: "2022-02-24T16:00:04Z" profile_url: https://www.productmetrics.info/architect/synthesize/productize + most_points: 4526 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2869,8 +3027,9 @@ points: 4438 rank: 109 tribe_id: 5 - created_at: 2022-03-02T10:00:10Z + created_at: "2022-03-02T10:00:10Z" profile_url: http://www.dynamicmarkets.org/cultivate/networks/deliverables/dot-com + most_points: 4438 - rank_att: 114 score_att: 813 rank_def: 497 @@ -2886,8 +3045,9 @@ points: 4399 rank: 111 tribe_id: 30 - created_at: 2022-02-24T15:00:09Z + created_at: "2022-02-24T15:00:09Z" profile_url: https://www.investorfacilitate.com/web-readiness/e-business/orchestrate/cultivate + most_points: 4399 - rank_att: 327 score_att: 8 rank_def: 309 @@ -2903,8 +3063,9 @@ points: 4304 rank: 115 tribe_id: 5 - created_at: 2022-02-22T20:00:05Z + created_at: "2022-02-22T20:00:05Z" profile_url: https://www.corporaterobust.info/architect + most_points: 4304 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2920,8 +3081,9 @@ points: 4219 rank: 118 tribe_id: 30 - created_at: 2022-02-22T17:00:08Z + created_at: "2022-02-22T17:00:08Z" profile_url: https://www.futuree-tailers.com/experiences/action-items/platforms + most_points: 4219 - rank_att: 267 score_att: 46 rank_def: 0 @@ -2937,8 +3099,9 @@ points: 4107 rank: 125 tribe_id: 30 - created_at: 2022-02-24T20:00:07Z + created_at: "2022-02-24T20:00:07Z" profile_url: https://www.internalrelationships.net/incubate/collaborative/b2c/killer + most_points: 4107 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2954,8 +3117,9 @@ points: 3814 rank: 133 tribe_id: 31 - created_at: 2022-02-22T13:00:09Z + created_at: "2022-02-22T13:00:09Z" profile_url: https://www.centralplug-and-play.io/reintermediate/transition/efficient/empower + most_points: 3814 - rank_att: 0 score_att: 0 rank_def: 340 @@ -2971,8 +3135,9 @@ points: 3790 rank: 135 tribe_id: 1 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: http://www.internalsynthesize.com/strategic/seize/ubiquitous + most_points: 3790 - rank_att: 10 score_att: 17745 rank_def: 0 @@ -2988,8 +3153,9 @@ points: 3752 rank: 137 tribe_id: 3 - created_at: 2022-02-21T21:00:09Z + created_at: "2022-02-21T21:00:09Z" profile_url: http://www.customersticky.biz/iterate/24-365/global + most_points: 3752 - rank_att: 0 score_att: 0 rank_def: 188 @@ -3005,8 +3171,9 @@ points: 3559 rank: 145 tribe_id: 31 - created_at: 2022-02-21T21:00:09Z + created_at: "2022-02-21T21:00:09Z" profile_url: http://www.dynamicstreamline.net/revolutionary/drive + most_points: 3559 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3022,8 +3189,9 @@ points: 3499 rank: 147 tribe_id: 5 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: https://www.centralubiquitous.org/revolutionary + most_points: 3499 - rank_att: 299 score_att: 20 rank_def: 642 @@ -3039,8 +3207,9 @@ points: 3475 rank: 150 tribe_id: 30 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: http://www.districtpartnerships.io/monetize + most_points: 3475 - rank_att: 87 score_att: 1533 rank_def: 0 @@ -3056,8 +3225,9 @@ points: 3314 rank: 157 tribe_id: 3 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: http://www.productenhance.info/iterate/markets/maximize/next-generation + most_points: 3314 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3073,8 +3243,9 @@ points: 3303 rank: 159 tribe_id: 30 - created_at: 2022-02-28T20:00:06Z + created_at: "2022-02-28T20:00:06Z" profile_url: http://www.futureportals.name/enable/infomediaries + most_points: 3303 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3090,8 +3261,9 @@ points: 3213 rank: 167 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.nationalvisualize.io/revolutionize + most_points: 3213 - rank_att: 239 score_att: 90 rank_def: 0 @@ -3107,8 +3279,9 @@ points: 2932 rank: 187 tribe_id: 30 - created_at: 2022-02-27T08:00:08Z + created_at: "2022-02-27T08:00:08Z" profile_url: http://www.principalkiller.net/b2b/magnetic + most_points: 2932 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3124,8 +3297,9 @@ points: 2907 rank: 189 tribe_id: 1 - created_at: 2022-02-22T15:00:10Z + created_at: "2022-02-22T15:00:10Z" profile_url: https://www.corporatemindshare.io/syndicate/killer/initiatives + most_points: 2907 - rank_att: 92 score_att: 1354 rank_def: 71 @@ -3141,8 +3315,9 @@ points: 2902 rank: 190 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.forwardsystems.info/vortals + most_points: 2902 - rank_att: 166 score_att: 284 rank_def: 2 @@ -3158,8 +3333,9 @@ points: 2854 rank: 196 tribe_id: 31 - created_at: 2022-02-24T18:00:06Z + created_at: "2022-02-24T18:00:06Z" profile_url: http://www.nationalrobust.io/end-to-end/empower/interactive + most_points: 2854 - rank_att: 182 score_att: 252 rank_def: 477 @@ -3175,8 +3351,9 @@ points: 2785 rank: 206 tribe_id: 31 - created_at: 2022-02-26T07:00:10Z + created_at: "2022-02-26T07:00:10Z" profile_url: https://www.corporateunleash.io/infrastructures/engage/productize + most_points: 2785 - rank_att: 51 score_att: 3281 rank_def: 615 @@ -3192,8 +3369,9 @@ points: 2780 rank: 208 tribe_id: 5 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: http://www.seniorcommunities.net/plug-and-play/proactive/seamless/expedite + most_points: 2780 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3209,8 +3387,9 @@ points: 2706 rank: 214 tribe_id: 31 - created_at: 2022-02-27T21:00:09Z + created_at: "2022-02-27T21:00:09Z" profile_url: https://www.corporateimpactful.org/metrics/models + most_points: 2706 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3226,8 +3405,9 @@ points: 2671 rank: 220 tribe_id: 1 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: https://www.internalengage.org/mindshare + most_points: 2671 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3243,8 +3423,9 @@ points: 2655 rank: 223 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.seniordrive.biz/killer/evolve/vortals + most_points: 2655 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3260,8 +3441,9 @@ points: 2624 rank: 232 tribe_id: 5 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: https://www.humanone-to-one.net/systems/interfaces + most_points: 2624 - rank_att: 81 score_att: 1733 rank_def: 0 @@ -3277,8 +3459,9 @@ points: 2600 rank: 235 tribe_id: 30 - created_at: 2022-02-23T12:00:06Z + created_at: "2022-02-23T12:00:06Z" profile_url: https://www.dynamicscalable.biz/one-to-one/sexy/eyeballs/streamline + most_points: 2600 - rank_att: 260 score_att: 54 rank_def: 0 @@ -3294,8 +3477,9 @@ points: 2454 rank: 256 tribe_id: 3 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: http://www.legacyintegrated.io/bleeding-edge/24-7 + most_points: 2454 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3311,8 +3495,9 @@ points: 2432 rank: 261 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.chiefexploit.io/world-class + most_points: 2432 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3328,8 +3513,9 @@ points: 2402 rank: 266 tribe_id: 31 - created_at: 2022-02-25T16:00:01Z + created_at: "2022-02-25T16:00:01Z" profile_url: https://www.leadintuitive.info/repurpose/generate/syndicate + most_points: 2402 - rank_att: 0 score_att: 0 rank_def: 663 @@ -3345,8 +3531,9 @@ points: 2376 rank: 268 tribe_id: 31 - created_at: 2022-03-02T10:00:10Z + created_at: "2022-03-02T10:00:10Z" profile_url: http://www.principale-commerce.org/viral/matrix/methodologies + most_points: 2376 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3362,8 +3549,9 @@ points: 2240 rank: 288 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.legacymorph.com/reintermediate + most_points: 2240 - rank_att: 276 score_att: 42 rank_def: 0 @@ -3379,8 +3567,9 @@ points: 2221 rank: 292 tribe_id: 31 - created_at: 2022-02-24T08:00:07Z + created_at: "2022-02-24T08:00:07Z" profile_url: http://www.corporateimplement.biz/clicks-and-mortar/reinvent/whiteboard + most_points: 2221 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3396,8 +3585,9 @@ points: 2174 rank: 300 tribe_id: 5 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: http://www.centralplatforms.net/cultivate/bandwidth/one-to-one/convergence + most_points: 2174 - rank_att: 227 score_att: 114 rank_def: 0 @@ -3413,8 +3603,9 @@ points: 2139 rank: 307 tribe_id: 1 - created_at: 2022-02-21T23:00:07Z + created_at: "2022-02-21T23:00:07Z" profile_url: http://www.productvalue-added.org/morph + most_points: 2139 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3430,8 +3621,9 @@ points: 2118 rank: 311 tribe_id: 1 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: http://www.futuretransform.net/metrics + most_points: 2118 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3447,8 +3639,9 @@ points: 2096 rank: 317 tribe_id: 31 - created_at: 2022-02-26T19:00:10Z + created_at: "2022-02-26T19:00:10Z" profile_url: http://www.legacyembrace.info/synthesize/brand/killer + most_points: 2096 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3464,8 +3657,9 @@ points: 2091 rank: 319 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.directutilize.org/seize/reinvent/dynamic/channels + most_points: 2091 - rank_att: 186 score_att: 233 rank_def: 661 @@ -3481,8 +3675,9 @@ points: 2015 rank: 337 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.chiefdeploy.org/impactful/drive + most_points: 2015 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3498,8 +3693,9 @@ points: 1950 rank: 363 tribe_id: 31 - created_at: 2022-02-24T22:00:06Z + created_at: "2022-02-24T22:00:06Z" profile_url: https://www.internationalsticky.io/architect/granular/models/strategize + most_points: 1950 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3515,8 +3711,9 @@ points: 1946 rank: 366 tribe_id: 31 - created_at: 2022-03-01T18:00:08Z + created_at: "2022-03-01T18:00:08Z" profile_url: https://www.globalempower.info/mesh + most_points: 1946 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3532,8 +3729,9 @@ points: 1930 rank: 369 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.nationalvirtual.net/b2c + most_points: 1930 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3549,8 +3747,9 @@ points: 1935 rank: 370 tribe_id: 1 - created_at: 2022-02-21T21:00:09Z + created_at: "2022-02-21T21:00:09Z" profile_url: https://www.human24-365.org/scalable + most_points: 1935 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3566,8 +3765,9 @@ points: 1860 rank: 389 tribe_id: 31 - created_at: 2022-02-27T14:00:04Z + created_at: "2022-02-27T14:00:04Z" profile_url: https://www.districtback-end.biz/orchestrate/innovative/interfaces + most_points: 1860 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3583,8 +3783,9 @@ points: 1855 rank: 391 tribe_id: 31 - created_at: 2022-02-21T23:00:07Z + created_at: "2022-02-21T23:00:07Z" profile_url: https://www.internationalcross-media.io/applications/redefine/paradigms/best-of-breed + most_points: 1855 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3600,8 +3801,9 @@ points: 1759 rank: 421 tribe_id: 1 - created_at: 2022-03-02T12:00:01Z + created_at: "2022-03-02T12:00:01Z" profile_url: https://www.humanenhance.com/extend + most_points: 1759 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3617,8 +3819,9 @@ points: 1739 rank: 427 tribe_id: 1 - created_at: 2022-02-23T17:00:10Z + created_at: "2022-02-23T17:00:10Z" profile_url: https://www.productcompelling.info/value-added + most_points: 1739 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3634,8 +3837,9 @@ points: 1560 rank: 503 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.dynamictransition.biz/revolutionary/whiteboard + most_points: 1560 - rank_att: 0 score_att: 0 rank_def: 329 @@ -3651,8 +3855,9 @@ points: 1534 rank: 515 tribe_id: 31 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: https://www.nationalone-to-one.info/repurpose/end-to-end/supply-chains/whiteboard + most_points: 1534 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3668,8 +3873,9 @@ points: 1509 rank: 525 tribe_id: 31 - created_at: 2022-02-24T22:00:06Z + created_at: "2022-02-24T22:00:06Z" profile_url: http://www.nationalsticky.biz/utilize/communities/grow/sexy + most_points: 1509 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3685,8 +3891,9 @@ points: 1385 rank: 588 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.legacybandwidth.io/e-enable/transform/communities/leverage + most_points: 1385 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3702,8 +3909,9 @@ points: 1382 rank: 595 tribe_id: 1 - created_at: 2022-03-01T12:00:08Z + created_at: "2022-03-01T12:00:08Z" profile_url: http://www.principaldistributed.io/infomediaries/b2c/solutions + most_points: 1382 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3719,8 +3927,9 @@ points: 1226 rank: 665 tribe_id: 31 - created_at: 2022-02-24T13:00:11Z + created_at: "2022-02-24T13:00:11Z" profile_url: https://www.chieftransparent.org/brand/interfaces + most_points: 1226 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3736,8 +3945,9 @@ points: 1202 rank: 679 tribe_id: 31 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: https://www.chiefe-services.net/leading-edge + most_points: 1202 - rank_att: 228 score_att: 108 rank_def: 0 @@ -3753,8 +3963,9 @@ points: 1094 rank: 728 tribe_id: 31 - created_at: 2022-02-22T18:00:06Z + created_at: "2022-02-22T18:00:06Z" profile_url: https://www.districtreinvent.net/reinvent/systems + most_points: 1094 - rank_att: 0 score_att: 0 rank_def: 678 @@ -3770,8 +3981,9 @@ points: 810 rank: 893 tribe_id: 3 - created_at: 2022-02-23T21:00:10Z + created_at: "2022-02-23T21:00:10Z" profile_url: https://www.dynamicsynergize.info/synthesize + most_points: 810 - rank_att: 121 score_att: 694 rank_def: 49 @@ -3787,8 +3999,9 @@ points: 596 rank: 1024 tribe_id: 30 - created_at: 2022-03-01T15:00:08Z + created_at: "2022-03-01T15:00:08Z" profile_url: http://www.internationalinitiatives.name/systems + most_points: 596 - rank_att: 0 score_att: 0 rank_def: 5 @@ -3804,8 +4017,9 @@ points: 482 rank: 1125 tribe_id: 30 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.leadrepurpose.biz/evolve/end-to-end/b2b + most_points: 482 - rank_att: 5 score_att: 38213157 rank_def: 2 @@ -3821,8 +4035,9 @@ points: 7298055 rank: 1 tribe_id: 27 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: https://www.chiefmesh.info/sexy + most_points: 7298055 - rank_att: 13 score_att: 23124653 rank_def: 112 @@ -3838,8 +4053,9 @@ points: 6292398 rank: 2 tribe_id: 2 - created_at: 2021-09-08T20:01:11Z + created_at: "2021-09-08T20:01:11Z" profile_url: https://www.corporatemarkets.net/bandwidth/e-enable/value-added/granular + most_points: 6292398 - rank_att: 4 score_att: 41520479 rank_def: 64 @@ -3855,8 +4071,9 @@ points: 5800404 rank: 3 tribe_id: 27 - created_at: 2021-09-04T15:01:18Z + created_at: "2021-09-04T15:01:18Z" profile_url: http://www.humancontent.org/deliver/recontextualize/action-items + most_points: 5800404 - rank_att: 3 score_att: 45122465 rank_def: 55 @@ -3872,8 +4089,9 @@ points: 5763174 rank: 4 tribe_id: 28 - created_at: 2021-09-02T23:01:13Z + created_at: "2021-09-02T23:01:13Z" profile_url: https://www.productsolutions.com/seamless/e-services/24-365 + most_points: 5763174 - rank_att: 12 score_att: 24408591 rank_def: 153 @@ -3889,8 +4107,9 @@ points: 5225098 rank: 5 tribe_id: 27 - created_at: 2021-09-16T23:00:54Z + created_at: "2021-09-16T23:00:54Z" profile_url: http://www.nationalpartnerships.com/front-end/reinvent/mesh + most_points: 5225098 - rank_att: 26 score_att: 15992358 rank_def: 51 @@ -3906,8 +4125,9 @@ points: 5091810 rank: 6 tribe_id: 2 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: https://www.futureweb-enabled.info/seize/24-365/grow + most_points: 5091810 - rank_att: 2 score_att: 45411371 rank_def: 175 @@ -3923,8 +4143,9 @@ points: 5020701 rank: 7 tribe_id: 27 - created_at: 2021-09-06T14:00:53Z + created_at: "2021-09-06T14:00:53Z" profile_url: https://www.futureplatforms.org/back-end/mission-critical/unleash/implement + most_points: 5020701 - rank_att: 7 score_att: 28659400 rank_def: 77 @@ -3940,8 +4161,9 @@ points: 5015401 rank: 8 tribe_id: 28 - created_at: 2021-09-08T11:01:09Z + created_at: "2021-09-08T11:01:09Z" profile_url: https://www.districtsolutions.com/e-business/maximize/synthesize/convergence + most_points: 5015401 - rank_att: 1 score_att: 50470345 rank_def: 67 @@ -3957,8 +4179,9 @@ points: 4865171 rank: 9 tribe_id: 28 - created_at: 2021-09-02T23:01:13Z + created_at: "2021-09-02T23:01:13Z" profile_url: http://www.forwardutilize.name/embrace/markets/architect/one-to-one + most_points: 4865171 - rank_att: 30 score_att: 14418054 rank_def: 33 @@ -3974,8 +4197,9 @@ points: 4427826 rank: 10 tribe_id: 28 - created_at: 2021-09-05T23:01:02Z + created_at: "2021-09-05T23:01:02Z" profile_url: https://www.directholistic.biz/disintermediate + most_points: 4427826 - rank_att: 20 score_att: 18178345 rank_def: 198 @@ -3991,8 +4215,9 @@ points: 4289852 rank: 11 tribe_id: 28 - created_at: 2021-09-15T08:01:13Z + created_at: "2021-09-15T08:01:13Z" profile_url: https://www.humandeliver.biz/front-end/eyeballs/visionary + most_points: 4289852 - rank_att: 6 score_att: 30513732 rank_def: 36 @@ -4008,8 +4233,9 @@ points: 4176778 rank: 12 tribe_id: 28 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: http://www.directcustomized.biz/iterate/aggregate/convergence + most_points: 4176778 - rank_att: 25 score_att: 16186476 rank_def: 14 @@ -4025,8 +4251,9 @@ points: 4066267 rank: 13 tribe_id: 28 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: https://www.leadcutting-edge.name/24-365/users/platforms + most_points: 4066267 - rank_att: 184 score_att: 3617056 rank_def: 253 @@ -4042,8 +4269,9 @@ points: 3945400 rank: 14 tribe_id: 27 - created_at: 2021-09-05T13:01:06Z + created_at: "2021-09-05T13:01:06Z" profile_url: https://www.chiefinitiatives.org/applications/benchmark/action-items/enterprise + most_points: 3945400 - rank_att: 8 score_att: 28069010 rank_def: 76 @@ -4059,8 +4287,9 @@ points: 3923741 rank: 15 tribe_id: 28 - created_at: 2021-09-06T10:00:55Z + created_at: "2021-09-06T10:00:55Z" profile_url: https://www.regionalmindshare.name/infomediaries/matrix/reintermediate + most_points: 3923741 - rank_att: 14 score_att: 22622696 rank_def: 109 @@ -4076,8 +4305,9 @@ points: 3886905 rank: 16 tribe_id: 28 - created_at: 2021-09-02T23:01:13Z + created_at: "2021-09-02T23:01:13Z" profile_url: http://www.forwardrecontextualize.net/models + most_points: 3886905 - rank_att: 10 score_att: 26740200 rank_def: 75 @@ -4093,8 +4323,9 @@ points: 3670115 rank: 17 tribe_id: 2 - created_at: 2021-09-21T19:01:08Z + created_at: "2021-09-21T19:01:08Z" profile_url: https://www.forwardevolve.io/incubate + most_points: 3670115 - rank_att: 45 score_att: 11478083 rank_def: 99 @@ -4110,8 +4341,9 @@ points: 3664235 rank: 18 tribe_id: 2 - created_at: 2021-09-02T18:01:08Z + created_at: "2021-09-02T18:01:08Z" profile_url: http://www.regionalreal-time.com/bleeding-edge/cross-platform + most_points: 3664235 - rank_att: 11 score_att: 24697368 rank_def: 74 @@ -4127,8 +4359,9 @@ points: 3646744 rank: 19 tribe_id: 27 - created_at: 2021-09-04T18:01:01Z + created_at: "2021-09-04T18:01:01Z" profile_url: https://www.customernetworks.net/productize/syndicate/strategize + most_points: 3646744 - rank_att: 17 score_att: 20015514 rank_def: 221 @@ -4144,8 +4377,9 @@ points: 3490102 rank: 20 tribe_id: 2 - created_at: 2021-09-18T09:00:56Z + created_at: "2021-09-18T09:00:56Z" profile_url: https://www.futuree-enable.name/revolutionize/visionary/scale/seamless + most_points: 3490102 - rank_att: 28 score_att: 15377024 rank_def: 84 @@ -4161,8 +4395,9 @@ points: 3488262 rank: 21 tribe_id: 28 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: https://www.productvisionary.name/integrate + most_points: 3488262 - rank_att: 21 score_att: 17745150 rank_def: 46 @@ -4178,8 +4413,9 @@ points: 3449908 rank: 22 tribe_id: 2 - created_at: 2021-09-04T16:00:52Z + created_at: "2021-09-04T16:00:52Z" profile_url: https://www.corporate24-365.biz/out-of-the-box + most_points: 3449908 - rank_att: 16 score_att: 20711344 rank_def: 69 @@ -4195,8 +4431,9 @@ points: 3395812 rank: 23 tribe_id: 2 - created_at: 2021-09-03T16:01:02Z + created_at: "2021-09-03T16:01:02Z" profile_url: https://www.chiefinnovate.name/integrated/24-365/applications + most_points: 3395812 - rank_att: 23 score_att: 17516132 rank_def: 53 @@ -4212,8 +4449,9 @@ points: 3365970 rank: 25 tribe_id: 2 - created_at: 2021-09-03T04:01:08Z + created_at: "2021-09-03T04:01:08Z" profile_url: http://www.legacyplug-and-play.biz/channels + most_points: 3365970 - rank_att: 59 score_att: 9984179 rank_def: 189 @@ -4229,8 +4467,9 @@ points: 3327315 rank: 26 tribe_id: 28 - created_at: 2021-09-08T23:01:10Z + created_at: "2021-09-08T23:01:10Z" profile_url: https://www.directtransform.name/systems/niches/portals/orchestrate + most_points: 3327315 - rank_att: 41 score_att: 11776916 rank_def: 160 @@ -4246,8 +4485,9 @@ points: 3245020 rank: 27 tribe_id: 2 - created_at: 2021-09-08T07:00:56Z + created_at: "2021-09-08T07:00:56Z" profile_url: http://www.nationalseamless.name/compelling/target/applications + most_points: 3245020 - rank_att: 90 score_att: 7365720 rank_def: 173 @@ -4263,8 +4503,9 @@ points: 3169124 rank: 28 tribe_id: 28 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: http://www.human24-7.biz/exploit/target + most_points: 3169124 - rank_att: 34 score_att: 12659615 rank_def: 37 @@ -4280,8 +4521,9 @@ points: 3153337 rank: 29 tribe_id: 2 - created_at: 2021-09-02T20:00:41Z + created_at: "2021-09-02T20:00:41Z" profile_url: http://www.internationale-services.org/implement + most_points: 3153337 - rank_att: 53 score_att: 10505715 rank_def: 162 @@ -4297,8 +4539,9 @@ points: 3139702 rank: 30 tribe_id: 2 - created_at: 2021-09-17T14:01:06Z + created_at: "2021-09-17T14:01:06Z" profile_url: https://www.directreintermediate.org/systems/incentivize/eyeballs/technologies + most_points: 3139702 - rank_att: 27 score_att: 15494779 rank_def: 200 @@ -4314,8 +4557,9 @@ points: 3123682 rank: 31 tribe_id: 28 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: https://www.dynamicmission-critical.com/monetize/expedite/generate + most_points: 3123682 - rank_att: 48 score_att: 11099498 rank_def: 145 @@ -4331,8 +4575,9 @@ points: 3088801 rank: 32 tribe_id: 28 - created_at: 2021-09-09T15:01:07Z + created_at: "2021-09-09T15:01:07Z" profile_url: http://www.legacyintegrate.net/b2b/monetize/brand + most_points: 3088801 - rank_att: 46 score_att: 11253371 rank_def: 190 @@ -4348,8 +4593,9 @@ points: 3074325 rank: 33 tribe_id: 28 - created_at: 2021-09-07T20:00:57Z + created_at: "2021-09-07T20:00:57Z" profile_url: https://www.legacyaggregate.name/paradigms/global/communities/systems + most_points: 3074325 - rank_att: 71 score_att: 8808437 rank_def: 357 @@ -4365,8 +4611,9 @@ points: 3064296 rank: 34 tribe_id: 28 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: http://www.customerfunctionalities.org/extend/benchmark/best-of-breed/real-time + most_points: 3064296 - rank_att: 72 score_att: 8759698 rank_def: 361 @@ -4382,8 +4629,9 @@ points: 3017347 rank: 35 tribe_id: 27 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: https://www.legacyuser-centric.com/rich/frictionless/leverage + most_points: 3017347 - rank_att: 49 score_att: 10949751 rank_def: 107 @@ -4399,8 +4647,9 @@ points: 2964624 rank: 36 tribe_id: 27 - created_at: 2021-09-08T11:01:09Z + created_at: "2021-09-08T11:01:09Z" profile_url: https://www.forwardoptimize.biz/integrated + most_points: 2964624 - rank_att: 117 score_att: 5974016 rank_def: 260 @@ -4416,8 +4665,9 @@ points: 2953426 rank: 37 tribe_id: 28 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: http://www.forwardmagnetic.io/scalable + most_points: 2953426 - rank_att: 61 score_att: 9572967 rank_def: 248 @@ -4433,8 +4683,9 @@ points: 2961589 rank: 38 tribe_id: 2 - created_at: 2021-09-04T20:00:59Z + created_at: "2021-09-04T20:00:59Z" profile_url: https://www.productarchitect.com/back-end/e-enable + most_points: 2961589 - rank_att: 75 score_att: 8615717 rank_def: 271 @@ -4450,8 +4701,9 @@ points: 2932284 rank: 39 tribe_id: 28 - created_at: 2021-09-17T11:00:56Z + created_at: "2021-09-17T11:00:56Z" profile_url: https://www.dynamicutilize.com/paradigms + most_points: 2932284 - rank_att: 78 score_att: 8307266 rank_def: 73 @@ -4467,8 +4719,9 @@ points: 2847379 rank: 40 tribe_id: 2 - created_at: 2021-10-10T07:00:56Z + created_at: "2021-10-10T07:00:56Z" profile_url: https://www.futurecompelling.biz/utilize/generate/metrics/interactive + most_points: 2847379 - rank_att: 96 score_att: 6896050 rank_def: 280 @@ -4484,8 +4737,9 @@ points: 2845687 rank: 41 tribe_id: 27 - created_at: 2021-09-13T20:01:12Z + created_at: "2021-09-13T20:01:12Z" profile_url: https://www.dynamicvisualize.org/mindshare/recontextualize + most_points: 2845687 - rank_att: 94 score_att: 7140798 rank_def: 323 @@ -4501,8 +4755,9 @@ points: 2841597 rank: 42 tribe_id: 27 - created_at: 2021-09-06T20:01:11Z + created_at: "2021-09-06T20:01:11Z" profile_url: https://www.forwardutilize.info/visionary/partnerships/harness/streamline + most_points: 2841597 - rank_att: 99 score_att: 6746116 rank_def: 466 @@ -4518,8 +4773,9 @@ points: 2814452 rank: 43 tribe_id: 28 - created_at: 2021-09-07T20:00:57Z + created_at: "2021-09-07T20:00:57Z" profile_url: http://www.districtdrive.org/impactful/whiteboard/benchmark + most_points: 2814452 - rank_att: 29 score_att: 14916881 rank_def: 105 @@ -4535,8 +4791,9 @@ points: 2755427 rank: 44 tribe_id: 27 - created_at: 2021-09-22T23:01:04Z + created_at: "2021-09-22T23:01:04Z" profile_url: https://www.dynamicplatforms.io/user-centric/engage/metrics + most_points: 2755427 - rank_att: 79 score_att: 8228366 rank_def: 242 @@ -4552,8 +4809,9 @@ points: 2745538 rank: 45 tribe_id: 2 - created_at: 2021-09-03T11:01:05Z + created_at: "2021-09-03T11:01:05Z" profile_url: https://www.nationalseize.biz/holistic/applications/facilitate/embrace + most_points: 2745538 - rank_att: 110 score_att: 6241797 rank_def: 220 @@ -4569,8 +4827,9 @@ points: 2725295 rank: 46 tribe_id: 28 - created_at: 2021-09-08T17:01:03Z + created_at: "2021-09-08T17:01:03Z" profile_url: https://www.districtsynergistic.org/architect/e-business + most_points: 2725295 - rank_att: 15 score_att: 21852306 rank_def: 316 @@ -4586,8 +4845,9 @@ points: 2675924 rank: 47 tribe_id: 28 - created_at: 2021-09-13T18:01:10Z + created_at: "2021-09-13T18:01:10Z" profile_url: https://www.internaldeliver.io/solutions/revolutionize/applications + most_points: 2675924 - rank_att: 9 score_att: 26795962 rank_def: 236 @@ -4603,8 +4863,9 @@ points: 2604285 rank: 48 tribe_id: 27 - created_at: 2021-09-04T18:01:01Z + created_at: "2021-09-04T18:01:01Z" profile_url: https://www.investorgrow.name/paradigms/holistic + most_points: 2604285 - rank_att: 47 score_att: 11123250 rank_def: 119 @@ -4620,8 +4881,9 @@ points: 2542323 rank: 49 tribe_id: 27 - created_at: 2021-09-03T13:01:02Z + created_at: "2021-09-03T13:01:02Z" profile_url: http://www.districte-business.biz/cutting-edge/e-enable/leading-edge + most_points: 2542323 - rank_att: 32 score_att: 13698775 rank_def: 469 @@ -4637,8 +4899,9 @@ points: 2526824 rank: 50 tribe_id: 28 - created_at: 2021-09-06T19:01:01Z + created_at: "2021-09-06T19:01:01Z" profile_url: http://www.leadcutting-edge.com/schemas/customized/markets + most_points: 2526824 - rank_att: 55 score_att: 10342920 rank_def: 358 @@ -4654,8 +4917,9 @@ points: 2513259 rank: 51 tribe_id: 2 - created_at: 2021-09-08T12:01:04Z + created_at: "2021-09-08T12:01:04Z" profile_url: http://www.internationalextensible.io/orchestrate/e-services/exploit/embrace + most_points: 2513259 - rank_att: 24 score_att: 17213216 rank_def: 492 @@ -4671,8 +4935,9 @@ points: 2492871 rank: 52 tribe_id: 28 - created_at: 2021-09-12T18:01:02Z + created_at: "2021-09-12T18:01:02Z" profile_url: https://www.dynamicend-to-end.biz/optimize/empower + most_points: 2492871 - rank_att: 57 score_att: 10210665 rank_def: 404 @@ -4688,8 +4953,9 @@ points: 2457975 rank: 53 tribe_id: 2 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: http://www.humanexpedite.net/generate/transition + most_points: 2457975 - rank_att: 43 score_att: 11592425 rank_def: 336 @@ -4705,8 +4971,9 @@ points: 2421335 rank: 54 tribe_id: 28 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: https://www.legacyopen-source.biz/plug-and-play/visualize/streamline/e-business + most_points: 2421335 - rank_att: 50 score_att: 10855472 rank_def: 366 @@ -4722,8 +4989,9 @@ points: 2392853 rank: 55 tribe_id: 28 - created_at: 2021-09-13T06:01:16Z + created_at: "2021-09-13T06:01:16Z" profile_url: http://www.globalsynergize.com/scalable + most_points: 2392853 - rank_att: 188 score_att: 3525019 rank_def: 184 @@ -4739,8 +5007,9 @@ points: 2390703 rank: 56 tribe_id: 2 - created_at: 2021-09-09T16:00:56Z + created_at: "2021-09-09T16:00:56Z" profile_url: https://www.dynamice-business.name/innovative/networks + most_points: 2390703 - rank_att: 18 score_att: 19485744 rank_def: 343 @@ -4756,8 +5025,9 @@ points: 2371168 rank: 57 tribe_id: 27 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: https://www.chiefharness.org/engineer + most_points: 2371168 - rank_att: 104 score_att: 6543106 rank_def: 115 @@ -4773,8 +5043,9 @@ points: 2353479 rank: 58 tribe_id: 28 - created_at: 2021-09-05T09:01:22Z + created_at: "2021-09-05T09:01:22Z" profile_url: https://www.humanbrand.name/synthesize + most_points: 2353479 - rank_att: 31 score_att: 14057243 rank_def: 13 @@ -4790,8 +5061,9 @@ points: 2344553 rank: 59 tribe_id: 2 - created_at: 2021-09-08T15:01:08Z + created_at: "2021-09-08T15:01:08Z" profile_url: http://www.nationalarchitect.io/productize/dot-com + most_points: 2344553 - rank_att: 135 score_att: 5329146 rank_def: 708 @@ -4807,8 +5079,9 @@ points: 2328267 rank: 60 tribe_id: 27 - created_at: 2021-09-03T18:00:59Z + created_at: "2021-09-03T18:00:59Z" profile_url: https://www.nationalsexy.info/cross-media/infrastructures/rich + most_points: 2328267 - rank_att: 44 score_att: 11514947 rank_def: 407 @@ -4824,8 +5097,9 @@ points: 2321458 rank: 61 tribe_id: 27 - created_at: 2021-09-03T12:01:05Z + created_at: "2021-09-03T12:01:05Z" profile_url: http://www.chiefmaximize.io/web-readiness/aggregate/e-business/ubiquitous + most_points: 2321458 - rank_att: 80 score_att: 8141698 rank_def: 22 @@ -4841,8 +5115,9 @@ points: 2307593 rank: 62 tribe_id: 27 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: https://www.centralarchitect.net/web-readiness/magnetic + most_points: 2307593 - rank_att: 64 score_att: 9303900 rank_def: 521 @@ -4858,8 +5133,9 @@ points: 2279565 rank: 63 tribe_id: 27 - created_at: 2021-09-07T21:01:03Z + created_at: "2021-09-07T21:01:03Z" profile_url: https://www.legacyvisionary.com/best-of-breed/impactful + most_points: 2279565 - rank_att: 33 score_att: 13436877 rank_def: 277 @@ -4875,8 +5151,9 @@ points: 2274204 rank: 64 tribe_id: 27 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: http://www.directarchitect.biz/web-enabled + most_points: 2274204 - rank_att: 128 score_att: 5478003 rank_def: 285 @@ -4892,8 +5169,9 @@ points: 2237414 rank: 65 tribe_id: 2 - created_at: 2021-09-12T10:01:02Z + created_at: "2021-09-12T10:01:02Z" profile_url: http://www.internationalworld-class.com/reintermediate/vortals + most_points: 2237414 - rank_att: 74 score_att: 8677453 rank_def: 434 @@ -4909,8 +5187,9 @@ points: 2195057 rank: 66 tribe_id: 27 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: https://www.directnext-generation.io/leading-edge/e-markets/deploy/maximize + most_points: 2195057 - rank_att: 37 score_att: 12072955 rank_def: 42 @@ -4926,8 +5205,9 @@ points: 2176850 rank: 67 tribe_id: 2 - created_at: 2021-09-17T00:01:06Z + created_at: "2021-09-17T00:01:06Z" profile_url: http://www.seniorredefine.org/dot-com/facilitate/unleash/e-tailers + most_points: 2176850 - rank_att: 69 score_att: 8858622 rank_def: 81 @@ -4943,8 +5223,9 @@ points: 2174447 rank: 68 tribe_id: 28 - created_at: 2021-09-08T23:01:10Z + created_at: "2021-09-08T23:01:10Z" profile_url: https://www.corporatecustomized.biz/monetize + most_points: 2174447 - rank_att: 42 score_att: 11669868 rank_def: 219 @@ -4960,8 +5241,9 @@ points: 2145397 rank: 69 tribe_id: 2 - created_at: 2021-09-03T15:01:09Z + created_at: "2021-09-03T15:01:09Z" profile_url: https://www.nationalparadigms.net/visualize/e-business/world-class + most_points: 2145397 - rank_att: 52 score_att: 10591724 rank_def: 179 @@ -4977,8 +5259,9 @@ points: 2122258 rank: 70 tribe_id: 28 - created_at: 2021-09-08T20:01:11Z + created_at: "2021-09-08T20:01:11Z" profile_url: https://www.internalweb-readiness.com/systems/proactive/customized/synthesize + most_points: 2122258 - rank_att: 111 score_att: 6208748 rank_def: 86 @@ -4994,8 +5277,9 @@ points: 2120949 rank: 71 tribe_id: 2 - created_at: 2021-09-02T18:01:08Z + created_at: "2021-09-02T18:01:08Z" profile_url: https://www.directexperiences.info/matrix/leverage/niches/supply-chains + most_points: 2120949 - rank_att: 130 score_att: 5407057 rank_def: 391 @@ -5011,8 +5295,9 @@ points: 2112802 rank: 72 tribe_id: 2 - created_at: 2021-09-08T11:01:09Z + created_at: "2021-09-08T11:01:09Z" profile_url: https://www.centralvisionary.biz/revolutionize/incubate + most_points: 2112802 - rank_att: 118 score_att: 5856448 rank_def: 1026 @@ -5028,8 +5313,9 @@ points: 2098892 rank: 73 tribe_id: 2 - created_at: 2021-09-30T21:00:58Z + created_at: "2021-09-30T21:00:58Z" profile_url: http://www.internalinterfaces.com/user-centric/schemas/initiatives/enhance + most_points: 2098892 - rank_att: 138 score_att: 5278097 rank_def: 390 @@ -5045,8 +5331,9 @@ points: 2076223 rank: 74 tribe_id: 2 - created_at: 2021-10-04T18:00:57Z + created_at: "2021-10-04T18:00:57Z" profile_url: https://www.investormesh.com/front-end + most_points: 2076223 - rank_att: 86 score_att: 7665260 rank_def: 154 @@ -5062,8 +5349,9 @@ points: 2067252 rank: 75 tribe_id: 1 - created_at: 2021-09-08T09:01:01Z + created_at: "2021-09-08T09:01:01Z" profile_url: https://www.centralglobal.org/schemas + most_points: 2067252 - rank_att: 120 score_att: 5825501 rank_def: 10 @@ -5079,8 +5367,9 @@ points: 2041229 rank: 76 tribe_id: 1 - created_at: 2021-09-05T13:01:06Z + created_at: "2021-09-05T13:01:06Z" profile_url: http://www.centraldistributed.net/architectures + most_points: 2041229 - rank_att: 108 score_att: 6273817 rank_def: 124 @@ -5096,8 +5385,9 @@ points: 2020474 rank: 77 tribe_id: 2 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: http://www.nationalkiller.net/e-enable + most_points: 2020474 - rank_att: 67 score_att: 9052060 rank_def: 919 @@ -5113,8 +5403,9 @@ points: 2018315 rank: 79 tribe_id: 27 - created_at: 2021-09-28T12:01:11Z + created_at: "2021-09-28T12:01:11Z" profile_url: http://www.legacymatrix.name/sexy/best-of-breed + most_points: 2018315 - rank_att: 255 score_att: 2226770 rank_def: 630 @@ -5130,8 +5421,9 @@ points: 2017692 rank: 80 tribe_id: 28 - created_at: 2021-09-05T09:01:22Z + created_at: "2021-09-05T09:01:22Z" profile_url: http://www.leadeyeballs.io/schemas/architectures/out-of-the-box + most_points: 2017692 - rank_att: 678 score_att: 89470 rank_def: 1222 @@ -5147,8 +5439,9 @@ points: 1934238 rank: 81 tribe_id: 28 - created_at: 2021-09-04T13:01:02Z + created_at: "2021-09-04T13:01:02Z" profile_url: http://www.leadpartnerships.net/synergies/vertical/leverage + most_points: 1934238 - rank_att: 84 score_att: 7934320 rank_def: 457 @@ -5164,8 +5457,9 @@ points: 1895790 rank: 83 tribe_id: 28 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: https://www.investorplatforms.net/vortals + most_points: 1895790 - rank_att: 192 score_att: 3432049 rank_def: 422 @@ -5181,8 +5475,9 @@ points: 1890373 rank: 84 tribe_id: 28 - created_at: 2021-10-17T21:01:05Z + created_at: "2021-10-17T21:01:05Z" profile_url: http://www.dynamicinteractive.net/leverage/holistic/solutions + most_points: 1890373 - rank_att: 73 score_att: 8755192 rank_def: 177 @@ -5198,8 +5493,9 @@ points: 1801685 rank: 86 tribe_id: 2 - created_at: 2021-09-08T12:01:04Z + created_at: "2021-09-08T12:01:04Z" profile_url: http://www.customercontent.biz/e-services/wireless/one-to-one/interactive + most_points: 1801685 - rank_att: 93 score_att: 7223207 rank_def: 125 @@ -5215,8 +5511,9 @@ points: 1778261 rank: 87 tribe_id: 28 - created_at: 2021-09-06T23:01:09Z + created_at: "2021-09-06T23:01:09Z" profile_url: http://www.directplatforms.biz/architectures/next-generation + most_points: 1778261 - rank_att: 271 score_att: 2021564 rank_def: 341 @@ -5232,8 +5529,9 @@ points: 1764219 rank: 88 tribe_id: 1 - created_at: 2021-09-13T13:00:57Z + created_at: "2021-09-13T13:00:57Z" profile_url: https://www.investorredefine.biz/synergize/innovative + most_points: 1764219 - rank_att: 85 score_att: 7880548 rank_def: 662 @@ -5249,8 +5547,9 @@ points: 1741011 rank: 89 tribe_id: 28 - created_at: 2021-09-10T21:01:01Z + created_at: "2021-09-10T21:01:01Z" profile_url: https://www.chiefextend.name/innovate/leverage/envisioneer + most_points: 1741011 - rank_att: 40 score_att: 11826332 rank_def: 235 @@ -5266,8 +5565,9 @@ points: 1739754 rank: 90 tribe_id: 27 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: http://www.seniorexpedite.io/24-365 + most_points: 1739754 - rank_att: 122 score_att: 5785061 rank_def: 350 @@ -5283,8 +5583,9 @@ points: 1730968 rank: 91 tribe_id: 27 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: https://www.regionalsexy.biz/systems/seize/intuitive/impactful + most_points: 1730968 - rank_att: 103 score_att: 6545979 rank_def: 379 @@ -5300,8 +5601,9 @@ points: 1723452 rank: 92 tribe_id: 2 - created_at: 2021-09-17T15:01:05Z + created_at: "2021-09-17T15:01:05Z" profile_url: https://www.internationaldistributed.info/technologies/synergies/webservices + most_points: 1723452 - rank_att: 162 score_att: 4005254 rank_def: 395 @@ -5317,8 +5619,9 @@ points: 1688271 rank: 93 tribe_id: 2 - created_at: 2021-09-02T18:01:08Z + created_at: "2021-09-02T18:01:08Z" profile_url: http://www.nationalkiller.biz/platforms/extend/e-services + most_points: 1688271 - rank_att: 115 score_att: 6053356 rank_def: 48 @@ -5334,8 +5637,9 @@ points: 1684782 rank: 95 tribe_id: 2 - created_at: 2021-09-14T10:00:58Z + created_at: "2021-09-14T10:00:58Z" profile_url: https://www.principaldynamic.org/whiteboard + most_points: 1684782 - rank_att: 142 score_att: 5165851 rank_def: 439 @@ -5351,8 +5655,9 @@ points: 1674357 rank: 96 tribe_id: 28 - created_at: 2021-09-06T14:00:53Z + created_at: "2021-09-06T14:00:53Z" profile_url: http://www.humanseize.org/metrics/impactful/vertical + most_points: 1674357 - rank_att: 68 score_att: 8997769 rank_def: 488 @@ -5368,8 +5673,9 @@ points: 1661909 rank: 97 tribe_id: 28 - created_at: 2021-09-08T21:00:59Z + created_at: "2021-09-08T21:00:59Z" profile_url: http://www.centralplatforms.org/24-7/revolutionary/integrated/recontextualize + most_points: 1661909 - rank_att: 109 score_att: 6260477 rank_def: 312 @@ -5385,8 +5691,9 @@ points: 1607496 rank: 99 tribe_id: 28 - created_at: 2021-09-10T10:00:48Z + created_at: "2021-09-10T10:00:48Z" profile_url: https://www.customerdistributed.net/robust + most_points: 1607496 - rank_att: 60 score_att: 9686672 rank_def: 311 @@ -5402,8 +5709,9 @@ points: 1603950 rank: 100 tribe_id: 2 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: https://www.dynamicb2c.info/rich + most_points: 1603950 - rank_att: 112 score_att: 6172454 rank_def: 276 @@ -5419,8 +5727,9 @@ points: 1591213 rank: 101 tribe_id: 2 - created_at: 2021-09-27T16:01:00Z + created_at: "2021-09-27T16:01:00Z" profile_url: https://www.districtempower.org/benchmark/recontextualize/bandwidth + most_points: 1591213 - rank_att: 132 score_att: 5399810 rank_def: 620 @@ -5436,8 +5745,9 @@ points: 1581464 rank: 102 tribe_id: 28 - created_at: 2021-09-06T14:00:53Z + created_at: "2021-09-06T14:00:53Z" profile_url: http://www.forwardcollaborative.name/generate/incubate/synergistic + most_points: 1581464 - rank_att: 76 score_att: 8490413 rank_def: 456 @@ -5453,8 +5763,9 @@ points: 1580251 rank: 103 tribe_id: 28 - created_at: 2021-09-24T09:01:06Z + created_at: "2021-09-24T09:01:06Z" profile_url: http://www.districtclicks-and-mortar.biz/roi/e-services/bricks-and-clicks/envisioneer + most_points: 1580251 - rank_att: 83 score_att: 7980575 rank_def: 349 @@ -5470,8 +5781,9 @@ points: 1578769 rank: 104 tribe_id: 28 - created_at: 2021-09-08T14:01:10Z + created_at: "2021-09-08T14:01:10Z" profile_url: http://www.districtcustomized.name/e-business/optimize/cutting-edge/syndicate + most_points: 1578769 - rank_att: 160 score_att: 4076191 rank_def: 618 @@ -5487,8 +5799,9 @@ points: 1559585 rank: 105 tribe_id: 28 - created_at: 2021-09-07T12:00:56Z + created_at: "2021-09-07T12:00:56Z" profile_url: https://www.leadempower.org/metrics/reinvent + most_points: 1559585 - rank_att: 141 score_att: 5204601 rank_def: 575 @@ -5504,8 +5817,9 @@ points: 1559092 rank: 106 tribe_id: 28 - created_at: 2021-09-09T11:01:06Z + created_at: "2021-09-09T11:01:06Z" profile_url: http://www.globalb2c.name/technologies/scale/metrics/communities + most_points: 1559092 - rank_att: 114 score_att: 6064326 rank_def: 1257 @@ -5521,8 +5835,9 @@ points: 1558364 rank: 107 tribe_id: 27 - created_at: 2021-10-17T21:01:05Z + created_at: "2021-10-17T21:01:05Z" profile_url: https://www.dynamicend-to-end.com/leverage/metrics + most_points: 1558364 - rank_att: 38 score_att: 11939981 rank_def: 297 @@ -5538,8 +5853,9 @@ points: 1545784 rank: 108 tribe_id: 27 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: https://www.corporateenable.biz/niches/innovate/partnerships + most_points: 1545784 - rank_att: 82 score_att: 8104110 rank_def: 338 @@ -5555,8 +5871,9 @@ points: 1529147 rank: 109 tribe_id: 2 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: http://www.directinteractive.org/one-to-one/disintermediate/roi + most_points: 1529147 - rank_att: 66 score_att: 9113520 rank_def: 229 @@ -5572,8 +5889,9 @@ points: 1518119 rank: 110 tribe_id: 28 - created_at: 2021-09-08T13:01:10Z + created_at: "2021-09-08T13:01:10Z" profile_url: https://www.humanopen-source.org/envisioneer/utilize + most_points: 1518119 - rank_att: 168 score_att: 3871575 rank_def: 819 @@ -5589,8 +5907,9 @@ points: 1513361 rank: 111 tribe_id: 2 - created_at: 2021-10-05T11:01:00Z + created_at: "2021-10-05T11:01:00Z" profile_url: http://www.legacyinnovative.biz/frictionless + most_points: 1513361 - rank_att: 173 score_att: 3788425 rank_def: 798 @@ -5606,8 +5925,9 @@ points: 1512980 rank: 112 tribe_id: 2 - created_at: 2021-10-12T20:01:09Z + created_at: "2021-10-12T20:01:09Z" profile_url: http://www.leadparadigms.biz/customized + most_points: 1512980 - rank_att: 87 score_att: 7639229 rank_def: 369 @@ -5623,8 +5943,9 @@ points: 1500687 rank: 113 tribe_id: 28 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: http://www.forwardapplications.org/e-tailers/utilize/aggregate/bandwidth + most_points: 1500687 - rank_att: 22 score_att: 17715276 rank_def: 5 @@ -5640,8 +5961,9 @@ points: 1489479 rank: 114 tribe_id: 1 - created_at: 2021-09-02T23:01:13Z + created_at: "2021-09-02T23:01:13Z" profile_url: http://www.directinterfaces.name/24-7 + most_points: 1489479 - rank_att: 137 score_att: 5280497 rank_def: 661 @@ -5657,8 +5979,9 @@ points: 1453835 rank: 115 tribe_id: 28 - created_at: 2021-09-09T15:01:07Z + created_at: "2021-09-09T15:01:07Z" profile_url: https://www.seniorweb-enabled.biz/reinvent + most_points: 1453835 - rank_att: 88 score_att: 7580662 rank_def: 532 @@ -5674,8 +5997,9 @@ points: 1449447 rank: 116 tribe_id: 28 - created_at: 2021-09-12T12:01:08Z + created_at: "2021-09-12T12:01:08Z" profile_url: https://www.internationalcutting-edge.net/optimize/reintermediate/paradigms/transform + most_points: 1449447 - rank_att: 92 score_att: 7250026 rank_def: 274 @@ -5691,8 +6015,9 @@ points: 1441236 rank: 117 tribe_id: 28 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: https://www.nationalinterfaces.org/grow/cross-media/out-of-the-box/embrace + most_points: 1441236 - rank_att: 126 score_att: 5527463 rank_def: 516 @@ -5708,8 +6033,9 @@ points: 1440315 rank: 118 tribe_id: 1 - created_at: 2021-09-15T20:01:13Z + created_at: "2021-09-15T20:01:13Z" profile_url: http://www.legacydrive.biz/global/supply-chains/bricks-and-clicks/web-readiness + most_points: 1440315 - rank_att: 153 score_att: 4485180 rank_def: 134 @@ -5725,8 +6051,9 @@ points: 1415990 rank: 119 tribe_id: 122 - created_at: 2021-09-08T02:00:58Z + created_at: "2021-09-08T02:00:58Z" profile_url: http://www.internale-business.info/mission-critical/transform + most_points: 1415990 - rank_att: 177 score_att: 3754779 rank_def: 574 @@ -5742,8 +6069,9 @@ points: 1356292 rank: 122 tribe_id: 28 - created_at: 2021-09-04T14:01:09Z + created_at: "2021-09-04T14:01:09Z" profile_url: http://www.districtplatforms.info/harness/mesh/b2b/24-365 + most_points: 1356292 - rank_att: 461 score_att: 473311 rank_def: 382 @@ -5759,8 +6087,9 @@ points: 1340157 rank: 123 tribe_id: 28 - created_at: 2021-09-08T17:01:03Z + created_at: "2021-09-08T17:01:03Z" profile_url: http://www.forwardchannels.info/b2c + most_points: 1340157 - rank_att: 175 score_att: 3767360 rank_def: 458 @@ -5776,8 +6105,9 @@ points: 1287281 rank: 124 tribe_id: 28 - created_at: 2021-09-06T16:01:06Z + created_at: "2021-09-06T16:01:06Z" profile_url: https://www.centraltarget.name/ubiquitous + most_points: 1287281 - rank_att: 223 score_att: 2609105 rank_def: 974 @@ -5793,8 +6123,9 @@ points: 1285017 rank: 125 tribe_id: 27 - created_at: 2021-10-11T17:01:03Z + created_at: "2021-10-11T17:01:03Z" profile_url: http://www.humanmetrics.org/webservices/magnetic/web-enabled + most_points: 1285017 - rank_att: 187 score_att: 3559586 rank_def: 580 @@ -5810,8 +6141,9 @@ points: 1261836 rank: 126 tribe_id: 27 - created_at: 2021-10-02T12:01:01Z + created_at: "2021-10-02T12:01:01Z" profile_url: http://www.centralexploit.io/web-readiness/clicks-and-mortar + most_points: 1261836 - rank_att: 116 score_att: 6038643 rank_def: 570 @@ -5827,8 +6159,9 @@ points: 1260555 rank: 127 tribe_id: 27 - created_at: 2021-09-08T20:01:11Z + created_at: "2021-09-08T20:01:11Z" profile_url: http://www.dynamictechnologies.biz/portals/expedite/mindshare/solutions + most_points: 1260555 - rank_att: 156 score_att: 4321783 rank_def: 654 @@ -5844,8 +6177,9 @@ points: 1259632 rank: 128 tribe_id: 27 - created_at: 2021-09-12T13:00:58Z + created_at: "2021-09-12T13:00:58Z" profile_url: https://www.globalsynergize.biz/repurpose/solutions + most_points: 1259632 - rank_att: 174 score_att: 3770364 rank_def: 610 @@ -5861,8 +6195,9 @@ points: 1237633 rank: 129 tribe_id: 28 - created_at: 2021-09-13T14:01:12Z + created_at: "2021-09-13T14:01:12Z" profile_url: https://www.regionaldisintermediate.net/cross-platform/innovative/action-items + most_points: 1237633 - rank_att: 197 score_att: 3333151 rank_def: 585 @@ -5878,8 +6213,9 @@ points: 1217341 rank: 130 tribe_id: 2 - created_at: 2021-09-03T15:01:09Z + created_at: "2021-09-03T15:01:09Z" profile_url: https://www.districtportals.io/revolutionize + most_points: 1217341 - rank_att: 205 score_att: 3165859 rank_def: 1074 @@ -5895,8 +6231,9 @@ points: 1195038 rank: 132 tribe_id: 27 - created_at: 2021-10-17T21:01:05Z + created_at: "2021-10-17T21:01:05Z" profile_url: http://www.seniorholistic.com/transform + most_points: 1195038 - rank_att: 123 score_att: 5723684 rank_def: 568 @@ -5912,8 +6249,9 @@ points: 1189007 rank: 133 tribe_id: 27 - created_at: 2021-09-19T09:01:06Z + created_at: "2021-09-19T09:01:06Z" profile_url: https://www.seniormatrix.com/architectures/granular + most_points: 1189007 - rank_att: 212 score_att: 2902825 rank_def: 592 @@ -5929,8 +6267,9 @@ points: 1182437 rank: 134 tribe_id: 27 - created_at: 2021-09-04T17:01:12Z + created_at: "2021-09-04T17:01:12Z" profile_url: https://www.internaliterate.info/sexy/sexy/drive + most_points: 1182437 - rank_att: 151 score_att: 4691276 rank_def: 772 @@ -5946,8 +6285,9 @@ points: 1179818 rank: 135 tribe_id: 2 - created_at: 2021-09-21T19:01:08Z + created_at: "2021-09-21T19:01:08Z" profile_url: https://www.futuree-markets.com/empower + most_points: 1179818 - rank_att: 125 score_att: 5547623 rank_def: 626 @@ -5963,8 +6303,9 @@ points: 1179716 rank: 136 tribe_id: 28 - created_at: 2021-09-08T17:01:03Z + created_at: "2021-09-08T17:01:03Z" profile_url: https://www.internationalconvergence.info/enhance/strategize/technologies + most_points: 1179716 - rank_att: 249 score_att: 2248356 rank_def: 911 @@ -5980,8 +6321,9 @@ points: 1174422 rank: 137 tribe_id: 2 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: http://www.forwarddistributed.org/cross-platform/end-to-end + most_points: 1174422 - rank_att: 262 score_att: 2132679 rank_def: 609 @@ -5997,8 +6339,9 @@ points: 1169948 rank: 138 tribe_id: 27 - created_at: 2021-10-01T09:00:59Z + created_at: "2021-10-01T09:00:59Z" profile_url: https://www.districtdeliver.com/communities/e-business + most_points: 1169948 - rank_att: 107 score_att: 6280841 rank_def: 524 @@ -6014,8 +6357,9 @@ points: 1155749 rank: 140 tribe_id: 27 - created_at: 2021-10-01T13:01:05Z + created_at: "2021-10-01T13:01:05Z" profile_url: https://www.centralcultivate.name/out-of-the-box/cultivate + most_points: 1155749 - rank_att: 159 score_att: 4188246 rank_def: 863 @@ -6031,8 +6375,9 @@ points: 1128143 rank: 141 tribe_id: 2 - created_at: 2021-10-08T13:01:05Z + created_at: "2021-10-08T13:01:05Z" profile_url: https://www.productbandwidth.name/utilize/bricks-and-clicks/empower + most_points: 1128143 - rank_att: 145 score_att: 5107201 rank_def: 54 @@ -6048,8 +6393,9 @@ points: 1127618 rank: 142 tribe_id: 2 - created_at: 2021-09-03T13:01:02Z + created_at: "2021-09-03T13:01:02Z" profile_url: https://www.futureconvergence.org/wireless/facilitate + most_points: 1127618 - rank_att: 393 score_att: 768012 rank_def: 147 @@ -6065,8 +6411,9 @@ points: 1105495 rank: 143 tribe_id: 1 - created_at: 2021-09-05T12:01:08Z + created_at: "2021-09-05T12:01:08Z" profile_url: https://www.dynamicpartnerships.info/extend + most_points: 1105495 - rank_att: 129 score_att: 5462571 rank_def: 550 @@ -6082,8 +6429,9 @@ points: 1091535 rank: 144 tribe_id: 2 - created_at: 2021-10-13T06:00:51Z + created_at: "2021-10-13T06:00:51Z" profile_url: http://www.leadturn-key.name/cross-platform/integrated/cross-media + most_points: 1091535 - rank_att: 124 score_att: 5685973 rank_def: 12 @@ -6099,8 +6447,9 @@ points: 1088744 rank: 145 tribe_id: 1 - created_at: 2021-09-02T20:00:41Z + created_at: "2021-09-02T20:00:41Z" profile_url: http://www.forwardtransition.biz/clicks-and-mortar/mission-critical/models + most_points: 1088744 - rank_att: 437 score_att: 570612 rank_def: 472 @@ -6116,8 +6465,9 @@ points: 1087231 rank: 146 tribe_id: 1 - created_at: 2021-10-28T21:01:02Z + created_at: "2021-10-28T21:01:02Z" profile_url: https://www.regionaldeploy.com/cultivate + most_points: 1087231 - rank_att: 191 score_att: 3488767 rank_def: 740 @@ -6133,8 +6483,9 @@ points: 1072528 rank: 147 tribe_id: 28 - created_at: 2021-09-04T16:00:52Z + created_at: "2021-09-04T16:00:52Z" profile_url: https://www.nationaloptimize.org/rich/deliverables/deploy/web-enabled + most_points: 1072528 - rank_att: 121 score_att: 5823306 rank_def: 270 @@ -6150,8 +6501,9 @@ points: 1069663 rank: 148 tribe_id: 28 - created_at: 2021-09-12T12:01:08Z + created_at: "2021-09-12T12:01:08Z" profile_url: https://www.customerengineer.name/engage/deploy/unleash/transform + most_points: 1069663 - rank_att: 97 score_att: 6790716 rank_def: 549 @@ -6167,8 +6519,9 @@ points: 1066334 rank: 149 tribe_id: 27 - created_at: 2021-09-10T08:01:03Z + created_at: "2021-09-10T08:01:03Z" profile_url: http://www.investorincentivize.name/dot-com + most_points: 1066334 - rank_att: 154 score_att: 4361952 rank_def: 775 @@ -6184,8 +6537,9 @@ points: 1053301 rank: 150 tribe_id: 28 - created_at: 2021-09-10T10:00:48Z + created_at: "2021-09-10T10:00:48Z" profile_url: http://www.productexploit.io/revolutionary/integrate/seize + most_points: 1053301 - rank_att: 180 score_att: 3740020 rank_def: 583 @@ -6201,8 +6555,9 @@ points: 1046872 rank: 151 tribe_id: 28 - created_at: 2021-09-14T14:01:10Z + created_at: "2021-09-14T14:01:10Z" profile_url: http://www.nationalcultivate.info/unleash/dot-com/implement + most_points: 1046872 - rank_att: 248 score_att: 2250227 rank_def: 856 @@ -6218,8 +6573,9 @@ points: 1025443 rank: 152 tribe_id: 28 - created_at: 2021-09-02T20:00:41Z + created_at: "2021-09-02T20:00:41Z" profile_url: http://www.humanuser-centric.net/world-class/user-centric + most_points: 1025443 - rank_att: 170 score_att: 3838236 rank_def: 489 @@ -6235,8 +6591,9 @@ points: 1024717 rank: 153 tribe_id: 27 - created_at: 2021-09-08T12:01:04Z + created_at: "2021-09-08T12:01:04Z" profile_url: https://www.directdeliver.org/niches/frictionless/recontextualize/expedite + most_points: 1024717 - rank_att: 294 score_att: 1643437 rank_def: 510 @@ -6252,8 +6609,9 @@ points: 1018879 rank: 154 tribe_id: 28 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: https://www.centralcompelling.com/partnerships/productize + most_points: 1018879 - rank_att: 201 score_att: 3247384 rank_def: 660 @@ -6269,8 +6627,9 @@ points: 1010139 rank: 155 tribe_id: 122 - created_at: 2021-09-12T18:01:02Z + created_at: "2021-09-12T18:01:02Z" profile_url: http://www.legacye-business.org/web-enabled + most_points: 1010139 - rank_att: 169 score_att: 3871475 rank_def: 362 @@ -6286,8 +6645,9 @@ points: 1004104 rank: 156 tribe_id: 28 - created_at: 2021-09-07T14:00:58Z + created_at: "2021-09-07T14:00:58Z" profile_url: https://www.forwardinteractive.org/front-end/relationships/distributed/recontextualize + most_points: 1004104 - rank_att: 81 score_att: 8116724 rank_def: 3 @@ -6303,8 +6663,9 @@ points: 982552 rank: 158 tribe_id: 1 - created_at: 2021-09-05T14:00:55Z + created_at: "2021-09-05T14:00:55Z" profile_url: http://www.directubiquitous.name/distributed/applications/embrace/whiteboard + most_points: 982552 - rank_att: 183 score_att: 3655772 rank_def: 384 @@ -6320,8 +6681,9 @@ points: 967899 rank: 159 tribe_id: 27 - created_at: 2021-09-03T06:01:09Z + created_at: "2021-09-03T06:01:09Z" profile_url: http://www.internationalarchitect.com/markets/generate/redefine/functionalities + most_points: 967899 - rank_att: 227 score_att: 2587069 rank_def: 165 @@ -6337,8 +6699,9 @@ points: 962675 rank: 161 tribe_id: 1 - created_at: 2021-09-07T08:00:54Z + created_at: "2021-09-07T08:00:54Z" profile_url: http://www.corporateinitiatives.info/niches/mesh + most_points: 962675 - rank_att: 194 score_att: 3341889 rank_def: 741 @@ -6354,8 +6717,9 @@ points: 950500 rank: 162 tribe_id: 27 - created_at: 2021-09-13T15:01:02Z + created_at: "2021-09-13T15:01:02Z" profile_url: https://www.principalimpactful.net/integrated/synergies + most_points: 950500 - rank_att: 165 score_att: 3932651 rank_def: 795 @@ -6371,8 +6735,9 @@ points: 950281 rank: 163 tribe_id: 28 - created_at: 2021-09-08T14:01:10Z + created_at: "2021-09-08T14:01:10Z" profile_url: https://www.districtdrive.org/expedite + most_points: 950281 - rank_att: 295 score_att: 1640336 rank_def: 544 @@ -6388,8 +6753,9 @@ points: 926085 rank: 164 tribe_id: 2 - created_at: 2021-10-12T16:01:04Z + created_at: "2021-10-12T16:01:04Z" profile_url: http://www.forwardcollaborative.io/sexy/transition + most_points: 926085 - rank_att: 412 score_att: 668239 rank_def: 1229 @@ -6405,8 +6771,9 @@ points: 920889 rank: 167 tribe_id: 27 - created_at: 2021-09-08T12:01:04Z + created_at: "2021-09-08T12:01:04Z" profile_url: https://www.productportals.net/extend/e-tailers/global/virtual + most_points: 920889 - rank_att: 372 score_att: 904952 rank_def: 658 @@ -6422,8 +6789,9 @@ points: 914684 rank: 168 tribe_id: 28 - created_at: 2021-09-07T14:00:58Z + created_at: "2021-09-07T14:00:58Z" profile_url: http://www.seniorvalue-added.io/recontextualize/plug-and-play/applications/webservices + most_points: 914684 - rank_att: 203 score_att: 3181591 rank_def: 600 @@ -6439,8 +6807,9 @@ points: 909444 rank: 170 tribe_id: 2 - created_at: 2021-09-24T16:01:06Z + created_at: "2021-09-24T16:01:06Z" profile_url: http://www.districtsyndicate.net/markets/virtual + most_points: 909444 - rank_att: 324 score_att: 1362505 rank_def: 104 @@ -6456,8 +6825,9 @@ points: 907975 rank: 171 tribe_id: 1 - created_at: 2021-10-10T21:00:58Z + created_at: "2021-10-10T21:00:58Z" profile_url: https://www.districtvortals.biz/visionary/architect + most_points: 907975 - rank_att: 51 score_att: 10802658 rank_def: 8 @@ -6473,8 +6843,9 @@ points: 897358 rank: 172 tribe_id: 1 - created_at: 2021-09-03T10:01:07Z + created_at: "2021-09-03T10:01:07Z" profile_url: http://www.legacysolutions.com/whiteboard + most_points: 897358 - rank_att: 270 score_att: 2032303 rank_def: 28 @@ -6490,8 +6861,9 @@ points: 883385 rank: 173 tribe_id: 27 - created_at: 2021-09-03T19:01:05Z + created_at: "2021-09-03T19:01:05Z" profile_url: https://www.globaliterate.org/utilize + most_points: 883385 - rank_att: 281 score_att: 1862598 rank_def: 1346 @@ -6507,8 +6879,9 @@ points: 875264 rank: 174 tribe_id: 2 - created_at: 2021-10-03T13:00:54Z + created_at: "2021-10-03T13:00:54Z" profile_url: http://www.regionalleverage.org/sticky/b2c/infomediaries + most_points: 875264 - rank_att: 172 score_att: 3790718 rank_def: 507 @@ -6524,8 +6897,9 @@ points: 874206 rank: 175 tribe_id: 27 - created_at: 2021-09-07T22:00:49Z + created_at: "2021-09-07T22:00:49Z" profile_url: https://www.centralbricks-and-clicks.biz/schemas/unleash + most_points: 874206 - rank_att: 157 score_att: 4299165 rank_def: 593 @@ -6541,8 +6915,9 @@ points: 855702 rank: 176 tribe_id: 27 - created_at: 2021-11-18T11:01:02Z + created_at: "2021-11-18T11:01:02Z" profile_url: http://www.regionalviral.com/ubiquitous/cutting-edge + most_points: 855702 - rank_att: 283 score_att: 1803286 rank_def: 705 @@ -6558,8 +6933,9 @@ points: 834265 rank: 177 tribe_id: 28 - created_at: 2021-09-08T21:00:59Z + created_at: "2021-09-08T21:00:59Z" profile_url: http://www.globalinnovative.net/robust/deliver + most_points: 834265 - rank_att: 311 score_att: 1490677 rank_def: 1157 @@ -6575,8 +6951,9 @@ points: 806421 rank: 178 tribe_id: 2 - created_at: 2021-10-22T12:00:59Z + created_at: "2021-10-22T12:00:59Z" profile_url: https://www.investorsynthesize.com/convergence/streamline + most_points: 806421 - rank_att: 185 score_att: 3586387 rank_def: 406 @@ -6592,8 +6969,9 @@ points: 743775 rank: 180 tribe_id: 27 - created_at: 2021-09-29T20:01:00Z + created_at: "2021-09-29T20:01:00Z" profile_url: https://www.districtweb-enabled.name/partnerships + most_points: 743775 - rank_att: 134 score_att: 5335837 rank_def: 97 @@ -6609,8 +6987,9 @@ points: 742302 rank: 181 tribe_id: 1 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: http://www.customer24-7.org/distributed + most_points: 742302 - rank_att: 265 score_att: 2118076 rank_def: 206 @@ -6626,8 +7005,9 @@ points: 740887 rank: 182 tribe_id: 1 - created_at: 2021-09-03T07:01:00Z + created_at: "2021-09-03T07:01:00Z" profile_url: http://www.globalincentivize.org/holistic + most_points: 740887 - rank_att: 585 score_att: 163522 rank_def: 779 @@ -6643,8 +7023,9 @@ points: 735773 rank: 183 tribe_id: 28 - created_at: 2021-09-15T21:01:00Z + created_at: "2021-09-15T21:01:00Z" profile_url: http://www.leadsupply-chains.biz/architect/integrated/value-added + most_points: 735773 - rank_att: 210 score_att: 2968464 rank_def: 204 @@ -6660,8 +7041,9 @@ points: 723716 rank: 184 tribe_id: 1 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: http://www.investoruser-centric.info/seize/methodologies/end-to-end + most_points: 723716 - rank_att: 196 score_att: 3336005 rank_def: 34 @@ -6677,8 +7059,9 @@ points: 718980 rank: 185 tribe_id: 1 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: http://www.dynamicincentivize.org/solutions + most_points: 718980 - rank_att: 337 score_att: 1250317 rank_def: 761 @@ -6694,8 +7077,9 @@ points: 703296 rank: 187 tribe_id: 2 - created_at: 2021-10-04T17:00:53Z + created_at: "2021-10-04T17:00:53Z" profile_url: http://www.leadend-to-end.info/integrate + most_points: 703296 - rank_att: 35 score_att: 12169486 rank_def: 426 @@ -6711,8 +7095,9 @@ points: 686432 rank: 189 tribe_id: 122 - created_at: 2021-09-08T17:01:03Z + created_at: "2021-09-08T17:01:03Z" profile_url: https://www.internationalengineer.net/impactful/distributed/whiteboard/robust + most_points: 686432 - rank_att: 252 score_att: 2243916 rank_def: 624 @@ -6728,8 +7113,9 @@ points: 667845 rank: 190 tribe_id: 27 - created_at: 2021-09-03T15:01:09Z + created_at: "2021-09-03T15:01:09Z" profile_url: http://www.chieforchestrate.info/streamline/monetize/enhance + most_points: 667845 - rank_att: 241 score_att: 2348710 rank_def: 1037 @@ -6745,8 +7131,9 @@ points: 662934 rank: 191 tribe_id: 27 - created_at: 2021-09-03T01:01:05Z + created_at: "2021-09-03T01:01:05Z" profile_url: https://www.forwarde-business.io/out-of-the-box/intuitive/best-of-breed/best-of-breed + most_points: 662934 - rank_att: 231 score_att: 2494564 rank_def: 62 @@ -6762,8 +7149,9 @@ points: 654844 rank: 192 tribe_id: 2 - created_at: 2021-09-03T20:01:05Z + created_at: "2021-09-03T20:01:05Z" profile_url: https://www.dynamicdrive.info/strategic/cross-media/interactive/networks + most_points: 654844 - rank_att: 257 score_att: 2205853 rank_def: 749 @@ -6779,8 +7167,9 @@ points: 653071 rank: 193 tribe_id: 28 - created_at: 2021-09-09T07:01:09Z + created_at: "2021-09-09T07:01:09Z" profile_url: https://www.nationalbest-of-breed.net/methodologies/productize + most_points: 653071 - rank_att: 273 score_att: 1957196 rank_def: 61 @@ -6796,8 +7185,9 @@ points: 642324 rank: 194 tribe_id: 1 - created_at: 2021-09-11T09:01:02Z + created_at: "2021-09-11T09:01:02Z" profile_url: http://www.dynamicproductize.biz/platforms/seamless + most_points: 642324 - rank_att: 645 score_att: 109390 rank_def: 704 @@ -6813,8 +7203,9 @@ points: 621761 rank: 195 tribe_id: 1 - created_at: 2021-09-12T11:00:55Z + created_at: "2021-09-12T11:00:55Z" profile_url: https://www.legacyseize.com/architectures/models + most_points: 621761 - rank_att: 318 score_att: 1407611 rank_def: 651 @@ -6830,8 +7221,9 @@ points: 624173 rank: 196 tribe_id: 2 - created_at: 2021-10-06T15:01:02Z + created_at: "2021-10-06T15:01:02Z" profile_url: https://www.dynamice-commerce.org/web-readiness/whiteboard + most_points: 624173 - rank_att: 70 score_att: 8851103 rank_def: 6 @@ -6847,8 +7239,9 @@ points: 605981 rank: 197 tribe_id: 1 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: https://www.legacyoptimize.name/intuitive/grow + most_points: 605981 - rank_att: 214 score_att: 2728284 rank_def: 330 @@ -6864,8 +7257,9 @@ points: 597677 rank: 198 tribe_id: 1 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: http://www.customersynergize.org/platforms/virtual/visionary + most_points: 597677 - rank_att: 195 score_att: 3338544 rank_def: 49 @@ -6881,8 +7275,9 @@ points: 580241 rank: 200 tribe_id: 1 - created_at: 2021-09-05T11:01:04Z + created_at: "2021-09-05T11:01:04Z" profile_url: http://www.productfrictionless.biz/vertical + most_points: 580241 - rank_att: 216 score_att: 2698716 rank_def: 383 @@ -6898,8 +7293,9 @@ points: 573865 rank: 201 tribe_id: 27 - created_at: 2021-10-03T15:01:00Z + created_at: "2021-10-03T15:01:00Z" profile_url: https://www.centralroi.io/extensible/incubate/proactive/initiatives + most_points: 573865 - rank_att: 428 score_att: 605550 rank_def: 355 @@ -6915,8 +7311,9 @@ points: 567471 rank: 203 tribe_id: 1 - created_at: 2021-09-03T10:01:07Z + created_at: "2021-09-03T10:01:07Z" profile_url: https://www.directseize.com/deploy/clicks-and-mortar + most_points: 567471 - rank_att: 198 score_att: 3303909 rank_def: 588 @@ -6932,8 +7329,9 @@ points: 527925 rank: 205 tribe_id: 122 - created_at: 2021-09-21T12:01:04Z + created_at: "2021-09-21T12:01:04Z" profile_url: http://www.regionalbleeding-edge.net/real-time/webservices + most_points: 527925 - rank_att: 394 score_att: 763519 rank_def: 797 @@ -6949,8 +7347,9 @@ points: 524662 rank: 206 tribe_id: 122 - created_at: 2021-09-26T01:00:55Z + created_at: "2021-09-26T01:00:55Z" profile_url: https://www.investorvortals.info/metrics/partnerships/infrastructures/recontextualize + most_points: 524662 - rank_att: 140 score_att: 5262646 rank_def: 21 @@ -6966,8 +7365,9 @@ points: 519766 rank: 207 tribe_id: 1 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: https://www.regionalmethodologies.com/sexy/user-centric/impactful + most_points: 519766 - rank_att: 383 score_att: 841168 rank_def: 232 @@ -6983,8 +7383,9 @@ points: 497506 rank: 209 tribe_id: 2 - created_at: 2021-09-03T08:00:53Z + created_at: "2021-09-03T08:00:53Z" profile_url: https://www.legacycross-platform.info/b2c/leading-edge/world-class + most_points: 497506 - rank_att: 426 score_att: 609690 rank_def: 427 @@ -7000,8 +7401,9 @@ points: 484381 rank: 210 tribe_id: 1 - created_at: 2021-09-16T14:01:12Z + created_at: "2021-09-16T14:01:12Z" profile_url: http://www.customervisionary.io/intuitive/ubiquitous/sticky + most_points: 484381 - rank_att: 308 score_att: 1500921 rank_def: 59 @@ -7017,8 +7419,9 @@ points: 484159 rank: 211 tribe_id: 1 - created_at: 2021-10-18T21:00:52Z + created_at: "2021-10-18T21:00:52Z" profile_url: http://www.legacyunleash.info/sexy/envisioneer + most_points: 484159 - rank_att: 113 score_att: 6157403 rank_def: 201 @@ -7034,8 +7437,9 @@ points: 461528 rank: 213 tribe_id: 122 - created_at: 2021-09-08T14:01:10Z + created_at: "2021-09-08T14:01:10Z" profile_url: http://www.productmatrix.org/extensible/empower/scale/one-to-one + most_points: 461528 - rank_att: 251 score_att: 2244367 rank_def: 791 @@ -7051,8 +7455,9 @@ points: 444785 rank: 214 tribe_id: 122 - created_at: 2021-09-08T16:01:06Z + created_at: "2021-09-08T16:01:06Z" profile_url: https://www.productone-to-one.name/facilitate/cultivate/schemas + most_points: 444785 - rank_att: 355 score_att: 1089553 rank_def: 1113 @@ -7068,8 +7473,9 @@ points: 440116 rank: 215 tribe_id: 28 - created_at: 2021-09-06T14:00:53Z + created_at: "2021-09-06T14:00:53Z" profile_url: https://www.seniorseize.name/target + most_points: 440116 - rank_att: 282 score_att: 1862190 rank_def: 1412 @@ -7085,8 +7491,9 @@ points: 424854 rank: 219 tribe_id: 122 - created_at: 2021-09-08T16:01:06Z + created_at: "2021-09-08T16:01:06Z" profile_url: https://www.districtrevolutionary.org/transform/frictionless/sexy/global + most_points: 424854 - rank_att: 447 score_att: 522373 rank_def: 1182 @@ -7102,8 +7509,9 @@ points: 419648 rank: 221 tribe_id: 122 - created_at: 2021-09-04T19:01:09Z + created_at: "2021-09-04T19:01:09Z" profile_url: http://www.seniorcompelling.biz/partnerships + most_points: 419648 - rank_att: 240 score_att: 2353641 rank_def: 529 @@ -7119,8 +7527,9 @@ points: 407549 rank: 223 tribe_id: 1 - created_at: 2021-09-26T07:01:03Z + created_at: "2021-09-26T07:01:03Z" profile_url: http://www.corporateopen-source.biz/strategize/viral + most_points: 407549 - rank_att: 335 score_att: 1260311 rank_def: 676 @@ -7136,8 +7545,9 @@ points: 404940 rank: 224 tribe_id: 27 - created_at: 2021-09-16T20:01:06Z + created_at: "2021-09-16T20:01:06Z" profile_url: https://www.forwardmodels.info/frictionless + most_points: 404940 - rank_att: 351 score_att: 1123601 rank_def: 127 @@ -7153,8 +7563,9 @@ points: 399755 rank: 227 tribe_id: 1 - created_at: 2021-09-09T19:01:08Z + created_at: "2021-09-09T19:01:08Z" profile_url: https://www.forwardone-to-one.org/viral/interfaces/reinvent/mission-critical + most_points: 399755 - rank_att: 389 score_att: 800762 rank_def: 921 @@ -7170,8 +7581,9 @@ points: 397528 rank: 228 tribe_id: 1 - created_at: 2021-10-04T13:01:06Z + created_at: "2021-10-04T13:01:06Z" profile_url: https://www.directseize.io/models/brand/synergize/frictionless + most_points: 397528 - rank_att: 449 score_att: 512383 rank_def: 520 @@ -7187,8 +7599,9 @@ points: 386151 rank: 229 tribe_id: 1 - created_at: 2021-10-18T11:00:51Z + created_at: "2021-10-18T11:00:51Z" profile_url: http://www.legacysticky.com/benchmark + most_points: 386151 - rank_att: 387 score_att: 821208 rank_def: 1207 @@ -7204,8 +7617,9 @@ points: 371629 rank: 231 tribe_id: 2 - created_at: 2021-09-17T09:01:00Z + created_at: "2021-09-17T09:01:00Z" profile_url: http://www.dynamicbleeding-edge.info/synergies/dynamic/productize/relationships + most_points: 371629 - model: Village rows: - _id: pl169-village-1 @@ -7218,7 +7632,7 @@ continent: K43 bonus: 0 player_id: 699783765 - created_at: 2021-09-17T09:01:00.000Z + created_at: "2021-09-17T09:01:00.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_village&id=1111 - _id: pl169-village-2 id: 1112 @@ -7230,7 +7644,7 @@ continent: K45 bonus: 1 player_id: 699783765 - created_at: 2021-09-19T09:01:00.000Z + created_at: "2021-09-19T09:01:00.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_village&id=1112 - _id: pl169-village-3 id: 1113 @@ -7242,7 +7656,7 @@ continent: K45 bonus: 0 player_id: 0 - created_at: 2021-09-30T15:11:00.000Z + created_at: "2021-09-30T15:11:00.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_village&id=1113 - _id: pl169-village-4 id: 1114 @@ -7254,7 +7668,7 @@ continent: K45 bonus: 4 player_id: 0 - created_at: 2021-09-29T05:11:00.000Z + created_at: "2021-09-29T05:11:00.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_village&id=1114 - _id: it70-village-1 id: 10022 @@ -7266,7 +7680,7 @@ continent: K55 bonus: 4 player_id: 578014 - created_at: 2022-02-21T18:00:10.000Z + created_at: "2022-02-21T18:00:10.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_village&id=10022 - _id: it70-village-2 id: 10023 @@ -7278,7 +7692,7 @@ continent: K56 bonus: 0 player_id: 578014 - created_at: 2022-02-22T15:00:10.000Z + created_at: "2022-02-22T15:00:10.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_village&id=10023 - _id: it70-village-3 id: 10024 @@ -7290,7 +7704,7 @@ continent: K11 bonus: 0 player_id: 0 - created_at: 2022-02-25T15:00:10.000Z + created_at: "2022-02-25T15:00:10.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_village&id=10024 - model: Ennoblement rows: @@ -7303,7 +7717,7 @@ old_owner_id: 0 old_tribe_id: 0 points: 2500 - created_at: 2021-09-30T09:01:00.000Z + created_at: "2021-09-30T09:01:00.000Z" - _id: pl169-village-2-2 id: 10001 server_key: pl169 @@ -7313,7 +7727,7 @@ old_owner_id: 699513260 old_tribe_id: 27 points: 5000 - created_at: 2021-10-30T09:01:00.000Z + created_at: "2021-10-30T09:01:00.000Z" - _id: it70-village-2-1 id: 20000 server_key: it70 @@ -7323,7 +7737,7 @@ old_owner_id: 0 old_tribe_id: 0 points: 2500 - created_at: 2022-03-15T15:00:10.000Z + created_at: "2022-03-15T15:00:10.000Z" - _id: it70-village-2-2 id: 20001 server_key: it70 @@ -7333,7 +7747,7 @@ old_owner_id: 848881282 old_tribe_id: 31 points: 5123 - created_at: 2022-04-22T15:00:10.000Z + created_at: "2022-04-22T15:00:10.000Z" - model: TribeChange rows: - _id: de188-1577279214-0-772-1 @@ -7342,42 +7756,42 @@ old_tribe_id: 0 new_tribe_id: 772 server_key: de188 - created_at: 2021-06-25T12:00:53.000Z + created_at: "2021-06-25T12:00:53.000Z" - _id: de188-1577279214-772-0 id: 10001 player_id: 1577279214 old_tribe_id: 772 new_tribe_id: 0 server_key: de188 - created_at: 2021-06-30T12:00:53.000Z + created_at: "2021-06-30T12:00:53.000Z" - _id: de188-1577279214-0-772-2 id: 10002 player_id: 1577279214 old_tribe_id: 0 new_tribe_id: 772 server_key: de188 - created_at: 2021-07-01T12:00:53.000Z + created_at: "2021-07-01T12:00:53.000Z" - _id: de188-2572835-0-772 id: 10010 player_id: 2572835 old_tribe_id: 0 new_tribe_id: 772 server_key: de188 - created_at: 2021-02-25T18:01:02.000Z + created_at: "2021-02-25T18:01:02.000Z" - _id: pl169-6180190-0-27 id: 10100 player_id: 6180190 old_tribe_id: 0 new_tribe_id: 27 server_key: pl169 - created_at: 2021-09-04T21:01:03.000Z + created_at: "2021-09-04T21:01:03.000Z" - _id: pl169-8419570-0-2 id: 10110 player_id: 8419570 old_tribe_id: 0 new_tribe_id: 2 server_key: pl169 - created_at: 2021-09-10T20:01:11.000Z + created_at: "2021-09-10T20:01:11.000Z" - model: ServerSnapshot rows: - id: 10000 @@ -7392,8 +7806,8 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - date: 2024-05-01T05:15:25.154992Z - created_at: 2024-05-01T05:15:25.154994Z + date: "2024-05-01T05:15:25.154992Z" + created_at: "2024-05-01T05:15:25.154994Z" - id: 10001 server_key: de188 num_players: 0 @@ -7406,8 +7820,8 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - date: 2024-05-02T05:15:25.154992Z - created_at: 2024-05-02T05:15:25.154994Z + date: "2024-05-02T05:15:25.154992Z" + created_at: "2024-05-02T05:15:25.154994Z" - id: 20000 server_key: it70 num_players: 0 @@ -7420,8 +7834,8 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - date: 2024-05-03T05:15:25.154992Z - created_at: 2024-05-03T05:15:25.154994Z + date: "2024-05-03T05:15:25.154992Z" + created_at: "2024-05-03T05:15:25.154994Z" - id: 20001 server_key: it70 num_players: 0 @@ -7434,8 +7848,8 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - date: 2024-05-04T05:15:25.154992Z - created_at: 2024-05-04T05:15:25.154994Z + date: "2024-05-04T05:15:25.154992Z" + created_at: "2024-05-04T05:15:25.154994Z" - model: TribeSnapshot rows: - rank_att: 1 @@ -7456,8 +7870,8 @@ all_points: 143350058 rank: 1 dominance: 29.76912481240106 - date: 2021-09-02T00:00:00.000Z - created_at: 2021-09-02T23:01:13.000Z + date: "2021-09-02T00:00:00.000Z" + created_at: "2021-09-02T23:01:13.000Z" - rank_att: 1 score_att: 669292167 rank_def: 5 @@ -7476,8 +7890,8 @@ all_points: 143350058 rank: 1 dominance: 29.76912481240106 - date: 2021-09-03T00:00:00.000Z - created_at: 2021-09-03T23:01:13.000Z + date: "2021-09-03T00:00:00.000Z" + created_at: "2021-09-03T23:01:13.000Z" - rank_att: 2 score_att: 513902873 rank_def: 6 @@ -7496,8 +7910,8 @@ all_points: 97812820 rank: 3 dominance: 20.87128142924693 - date: 2021-09-02T00:00:00.000Z - created_at: 2021-09-02T22:00:37.000Z + date: "2021-09-02T00:00:00.000Z" + created_at: "2021-09-02T22:00:37.000Z" - rank_att: 2 score_att: 513902873 rank_def: 6 @@ -7516,8 +7930,8 @@ all_points: 97812820 rank: 3 dominance: 20.87128142924693 - date: 2021-09-03T00:00:00.000Z - created_at: 2021-09-03T22:00:37.000Z + date: "2021-09-03T00:00:00.000Z" + created_at: "2021-09-03T22:00:37.000Z" - rank_att: 1 score_att: 1449031872 rank_def: 1 @@ -7536,8 +7950,8 @@ all_points: 266237628 rank: 1 dominance: 54.27478896611433 - date: 2020-06-22T00:00:00.000Z - created_at: 2020-06-22T13:45:46.000Z + date: "2020-06-22T00:00:00.000Z" + created_at: "2020-06-22T13:45:46.000Z" - rank_att: 1 score_att: 1449031872 rank_def: 1 @@ -7556,8 +7970,8 @@ all_points: 266237628 rank: 1 dominance: 54.27478896611433 - date: 2020-06-23T00:00:00.000Z - created_at: 2020-06-23T13:45:46.000Z + date: "2020-06-23T00:00:00.000Z" + created_at: "2020-06-23T13:45:46.000Z" - model: PlayerSnapshot rows: - rank_att: 5 @@ -7576,8 +7990,8 @@ points: 7298055 rank: 1 tribe_id: 27 - date: 2021-09-02T00:00:00.000Z - created_at: 2021-09-02T21:01:03.000Z + date: "2021-09-02T00:00:00.000Z" + created_at: "2021-09-02T21:01:03.000Z" - rank_att: 5 score_att: 38213157 rank_def: 2 @@ -7594,8 +8008,8 @@ points: 7298055 rank: 1 tribe_id: 27 - date: 2021-09-03T00:00:00.000Z - created_at: 2021-09-03T21:01:03.000Z + date: "2021-09-03T00:00:00.000Z" + created_at: "2021-09-03T21:01:03.000Z" - rank_att: 13 score_att: 23124653 rank_def: 112 @@ -7612,8 +8026,8 @@ points: 6292398 rank: 2 tribe_id: 2 - date: 2021-09-08T00:00:00.000Z - created_at: 2021-09-08T20:01:11.000Z + date: "2021-09-08T00:00:00.000Z" + created_at: "2021-09-08T20:01:11.000Z" - rank_att: 10 score_att: 27638462 rank_def: 35 @@ -7630,8 +8044,8 @@ points: 9199775 rank: 1 tribe_id: 772 - date: 2021-06-25T00:00:00.000Z - created_at: 2021-06-25T11:00:53.000Z + date: "2021-06-25T00:00:00.000Z" + created_at: "2021-06-25T11:00:53.000Z" - rank_att: 10 score_att: 27638462 rank_def: 35 @@ -7648,5 +8062,5 @@ points: 9199775 rank: 1 tribe_id: 772 - date: 2021-06-26T00:00:00.000Z - created_at: 2021-06-26T11:00:53.000Z + date: "2021-06-26T00:00:00.000Z" + created_at: "2021-06-26T11:00:53.000Z" diff --git a/internal/domain/domaintest/player.go b/internal/domain/domaintest/player.go index 84fb186..4e84c50 100644 --- a/internal/domain/domaintest/player.go +++ b/internal/domain/domaintest/player.go @@ -17,6 +17,7 @@ type PlayerCursorConfig struct { ODScoreSup int ODScoreTotal int Points int + MostPoints int DeletedAt time.Time } @@ -31,6 +32,7 @@ func NewPlayerCursor(tb TestingTB, opts ...func(cfg *PlayerCursorConfig)) domain ODScoreSup: gofakeit.IntRange(0, math.MaxInt), ODScoreTotal: gofakeit.IntRange(0, math.MaxInt), Points: gofakeit.IntRange(0, math.MaxInt), + MostPoints: gofakeit.IntRange(0, math.MaxInt), DeletedAt: time.Time{}, } @@ -46,6 +48,7 @@ func NewPlayerCursor(tb TestingTB, opts ...func(cfg *PlayerCursorConfig)) domain cfg.ODScoreSup, cfg.ODScoreTotal, cfg.Points, + cfg.MostPoints, cfg.DeletedAt, ) require.NoError(tb, err) diff --git a/internal/domain/player.go b/internal/domain/player.go index 34e792c..58687bc 100644 --- a/internal/domain/player.go +++ b/internal/domain/player.go @@ -200,6 +200,7 @@ func (p Player) ToCursor() (PlayerCursor, error) { p.od.scoreSup, p.od.scoreTotal, p.points, + p.mostPoints, p.deletedAt, ) } @@ -552,6 +553,8 @@ const ( PlayerSortODScoreTotalDESC PlayerSortPointsASC PlayerSortPointsDESC + PlayerSortMostPointsASC + PlayerSortMostPointsDESC PlayerSortDeletedAtASC PlayerSortDeletedAtDESC ) @@ -592,6 +595,10 @@ func (s PlayerSort) String() string { return "points:ASC" case PlayerSortPointsDESC: return "points:DESC" + case PlayerSortMostPointsASC: + return "mostPoints:ASC" + case PlayerSortMostPointsDESC: + return "mostPoints:DESC" case PlayerSortDeletedAtASC: return "deletedAt:ASC" case PlayerSortDeletedAtDESC: @@ -609,6 +616,7 @@ type PlayerCursor struct { odScoreSup int odScoreTotal int points int + mostPoints int deletedAt time.Time } @@ -622,6 +630,7 @@ func NewPlayerCursor( odScoreSup int, odScoreTotal int, points int, + mostPoints int, deletedAt time.Time, ) (PlayerCursor, error) { if err := validateIntInRange(id, 1, math.MaxInt); err != nil { @@ -680,6 +689,14 @@ func NewPlayerCursor( } } + if err := validateIntInRange(mostPoints, 0, math.MaxInt); err != nil { + return PlayerCursor{}, ValidationError{ + Model: playerCursorModelName, + Field: "mostPoints", + Err: err, + } + } + return PlayerCursor{ id: id, serverKey: serverKey, @@ -688,6 +705,7 @@ func NewPlayerCursor( odScoreSup: odScoreSup, odScoreTotal: odScoreTotal, points: points, + mostPoints: mostPoints, deletedAt: deletedAt, }, nil } @@ -734,6 +752,11 @@ func decodePlayerCursor(encoded string) (PlayerCursor, error) { return PlayerCursor{}, ErrInvalidCursor } + mostPoints, err := m.int("mostPoints") + if err != nil { + return PlayerCursor{}, ErrInvalidCursor + } + deletedAt, err := m.time("deletedAt") if err != nil { return PlayerCursor{}, ErrInvalidCursor @@ -747,6 +770,7 @@ func decodePlayerCursor(encoded string) (PlayerCursor, error) { odScoreSup, odScoreTotal, points, + mostPoints, deletedAt, ) if err != nil { @@ -784,6 +808,10 @@ func (pc PlayerCursor) Points() int { return pc.points } +func (pc PlayerCursor) MostPoints() int { + return pc.mostPoints +} + func (pc PlayerCursor) DeletedAt() time.Time { return pc.deletedAt } @@ -805,6 +833,7 @@ func (pc PlayerCursor) Encode() string { {"odScoreSup", pc.odScoreSup}, {"odScoreTotal", pc.odScoreTotal}, {"points", pc.points}, + {"mostPoints", pc.mostPoints}, {"deletedAt", pc.deletedAt}, }) } diff --git a/internal/domain/player_test.go b/internal/domain/player_test.go index cf8fcf8..b3bfad8 100644 --- a/internal/domain/player_test.go +++ b/internal/domain/player_test.go @@ -303,6 +303,13 @@ func TestPlayerSort_IsInConflict(t *testing.T) { }, expectedRes: true, }, + { + name: "OK: mostPoints:ASC mostPoints:DESC", + args: args{ + sorts: [2]domain.PlayerSort{domain.PlayerSortMostPointsASC, domain.PlayerSortMostPointsDESC}, + }, + expectedRes: true, + }, { name: "OK: deletedAt:ASC deletedAt:DESC", args: args{ @@ -334,6 +341,7 @@ func TestNewPlayerCursor(t *testing.T) { odScoreSup int odScoreTotal int points int + mostPoints int deletedAt time.Time } @@ -354,6 +362,7 @@ func TestNewPlayerCursor(t *testing.T) { odScoreSup: validPlayerCursor.ODScoreSup(), odScoreTotal: validPlayerCursor.ODScoreTotal(), points: validPlayerCursor.Points(), + mostPoints: validPlayerCursor.MostPoints(), deletedAt: validPlayerCursor.DeletedAt(), }, expectedErr: nil, @@ -368,6 +377,7 @@ func TestNewPlayerCursor(t *testing.T) { odScoreSup: validPlayerCursor.ODScoreSup(), odScoreTotal: validPlayerCursor.ODScoreTotal(), points: validPlayerCursor.Points(), + mostPoints: validPlayerCursor.MostPoints(), deletedAt: validPlayerCursor.DeletedAt(), }, expectedErr: domain.ValidationError{ @@ -389,6 +399,7 @@ func TestNewPlayerCursor(t *testing.T) { odScoreSup: validPlayerCursor.ODScoreSup(), odScoreTotal: validPlayerCursor.ODScoreTotal(), points: validPlayerCursor.Points(), + mostPoints: validPlayerCursor.MostPoints(), deletedAt: validPlayerCursor.DeletedAt(), }, expectedErr: domain.ValidationError{ @@ -410,6 +421,7 @@ func TestNewPlayerCursor(t *testing.T) { odScoreSup: validPlayerCursor.ODScoreSup(), odScoreTotal: validPlayerCursor.ODScoreTotal(), points: validPlayerCursor.Points(), + mostPoints: validPlayerCursor.MostPoints(), deletedAt: validPlayerCursor.DeletedAt(), }, expectedErr: domain.ValidationError{ @@ -431,6 +443,7 @@ func TestNewPlayerCursor(t *testing.T) { odScoreSup: -1, odScoreTotal: validPlayerCursor.ODScoreTotal(), points: validPlayerCursor.Points(), + mostPoints: validPlayerCursor.MostPoints(), deletedAt: validPlayerCursor.DeletedAt(), }, expectedErr: domain.ValidationError{ @@ -452,6 +465,7 @@ func TestNewPlayerCursor(t *testing.T) { odScoreSup: validPlayerCursor.ODScoreSup(), odScoreTotal: -1, points: validPlayerCursor.Points(), + mostPoints: validPlayerCursor.MostPoints(), deletedAt: validPlayerCursor.DeletedAt(), }, expectedErr: domain.ValidationError{ @@ -473,6 +487,7 @@ func TestNewPlayerCursor(t *testing.T) { odScoreSup: validPlayerCursor.ODScoreSup(), odScoreTotal: validPlayerCursor.ODScoreTotal(), points: -1, + mostPoints: validPlayerCursor.MostPoints(), deletedAt: validPlayerCursor.DeletedAt(), }, expectedErr: domain.ValidationError{ @@ -484,6 +499,28 @@ func TestNewPlayerCursor(t *testing.T) { }, }, }, + { + name: "ERR: mostPoints < 0", + args: args{ + id: validPlayerCursor.ID(), + serverKey: validPlayerCursor.ServerKey(), + odScoreAtt: validPlayerCursor.ODScoreAtt(), + odScoreDef: validPlayerCursor.ODScoreDef(), + odScoreSup: validPlayerCursor.ODScoreSup(), + odScoreTotal: validPlayerCursor.ODScoreTotal(), + points: validPlayerCursor.Points(), + mostPoints: -1, + deletedAt: validPlayerCursor.DeletedAt(), + }, + expectedErr: domain.ValidationError{ + Model: "PlayerCursor", + Field: "mostPoints", + Err: domain.MinGreaterEqualError{ + Min: 0, + Current: -1, + }, + }, + }, } for _, serverKeyTest := range newServerKeyValidationTests() { @@ -518,6 +555,7 @@ func TestNewPlayerCursor(t *testing.T) { tt.args.odScoreSup, tt.args.odScoreTotal, tt.args.points, + tt.args.mostPoints, tt.args.deletedAt, ) require.ErrorIs(t, err, tt.expectedErr) @@ -531,6 +569,7 @@ func TestNewPlayerCursor(t *testing.T) { assert.Equal(t, tt.args.odScoreSup, pc.ODScoreSup()) assert.Equal(t, tt.args.odScoreTotal, pc.ODScoreTotal()) assert.Equal(t, tt.args.points, pc.Points()) + assert.Equal(t, tt.args.mostPoints, pc.MostPoints()) assert.Equal(t, tt.args.deletedAt, pc.DeletedAt()) assert.NotEmpty(t, pc.Encode()) }) diff --git a/internal/port/handler_http_api_player.go b/internal/port/handler_http_api_player.go index b2432b0..6a0c9f9 100644 --- a/internal/port/handler_http_api_player.go +++ b/internal/port/handler_http_api_player.go @@ -24,6 +24,8 @@ var apiPlayerSortAllowedValues = []domain.PlayerSort{ domain.PlayerSortODScoreTotalDESC, domain.PlayerSortPointsASC, domain.PlayerSortPointsDESC, + domain.PlayerSortMostPointsASC, + domain.PlayerSortMostPointsDESC, domain.PlayerSortDeletedAtASC, domain.PlayerSortDeletedAtDESC, } diff --git a/internal/port/handler_http_api_player_test.go b/internal/port/handler_http_api_player_test.go index 1e54211..36281e8 100644 --- a/internal/port/handler_http_api_player_test.go +++ b/internal/port/handler_http_api_player_test.go @@ -181,6 +181,33 @@ func TestListVersionPlayers(t *testing.T) { })) }, }, + { + name: "OK: sort=[mostPoints:DESC]", + reqModifier: func(t *testing.T, req *http.Request) { + t.Helper() + q := req.URL.Query() + q.Set("sort", "mostPoints:DESC") + req.URL.RawQuery = q.Encode() + }, + assertResp: func(t *testing.T, _ *http.Request, resp *http.Response) { + t.Helper() + + assert.Equal(t, http.StatusOK, resp.StatusCode) + + // body + body := decodeJSON[apimodel.ListPlayersWithServersResponse](t, resp.Body) + assert.Zero(t, body.Cursor.Next) + assert.NotZero(t, body.Cursor.Self) + assert.NotZero(t, body.Data) + assert.True(t, slices.IsSortedFunc(body.Data, func(a, b apimodel.PlayerWithServer) int { + return cmp.Or( + cmp.Compare(a.Server.Key, b.Server.Key), + cmp.Compare(a.MostPoints, b.MostPoints)*-1, + cmp.Compare(a.Id, b.Id), + ) + })) + }, + }, { name: "OK: name", reqModifier: func(t *testing.T, req *http.Request) { @@ -1023,6 +1050,32 @@ func TestListServerPlayers(t *testing.T) { })) }, }, + { + name: "OK: sort=[mostPoints:DESC]", + reqModifier: func(t *testing.T, req *http.Request) { + t.Helper() + q := req.URL.Query() + q.Set("sort", "mostPoints:DESC") + req.URL.RawQuery = q.Encode() + }, + assertResp: func(t *testing.T, _ *http.Request, resp *http.Response) { + t.Helper() + + assert.Equal(t, http.StatusOK, resp.StatusCode) + + // body + body := decodeJSON[apimodel.ListPlayersWithServersResponse](t, resp.Body) + assert.Zero(t, body.Cursor.Next) + assert.NotZero(t, body.Cursor.Self) + assert.NotZero(t, body.Data) + assert.True(t, slices.IsSortedFunc(body.Data, func(a, b apimodel.PlayerWithServer) int { + return cmp.Or( + cmp.Compare(a.MostPoints, b.MostPoints)*-1, + cmp.Compare(a.Id, b.Id), + ) + })) + }, + }, { name: "OK: name", reqModifier: func(t *testing.T, req *http.Request) { @@ -1863,6 +1916,32 @@ func TestListTribeMembers(t *testing.T) { })) }, }, + { + name: "OK: sort=[mostPoints:DESC]", + reqModifier: func(t *testing.T, req *http.Request) { + t.Helper() + q := req.URL.Query() + q.Set("sort", "mostPoints:DESC") + req.URL.RawQuery = q.Encode() + }, + assertResp: func(t *testing.T, _ *http.Request, resp *http.Response) { + t.Helper() + + assert.Equal(t, http.StatusOK, resp.StatusCode) + + // body + body := decodeJSON[apimodel.ListPlayersWithServersResponse](t, resp.Body) + assert.Zero(t, body.Cursor.Next) + assert.NotZero(t, body.Cursor.Self) + assert.NotZero(t, body.Data) + assert.True(t, slices.IsSortedFunc(body.Data, func(a, b apimodel.PlayerWithServer) int { + return cmp.Or( + cmp.Compare(a.MostPoints, b.MostPoints)*-1, + cmp.Compare(a.Id, b.Id), + ) + })) + }, + }, { name: "ERR: limit is not an integer", reqModifier: func(t *testing.T, req *http.Request) { diff --git a/internal/port/testdata/api/fixture.yml b/internal/port/testdata/api/fixture.yml index 392cc81..dcb9d96 100644 --- a/internal/port/testdata/api/fixture.yml +++ b/internal/port/testdata/api/fixture.yml @@ -11,13 +11,13 @@ num_player_villages: 47759 num_barbarian_villages: 44 num_bonus_villages: 0 - created_at: 2022-01-19T12:00:54.000Z - player_data_synced_at: 2022-01-19T12:00:54.000Z - player_snapshots_created_at: 2022-01-19T12:00:54.000Z - tribe_data_synced_at: 2022-01-19T12:00:54.000Z - tribe_snapshots_created_at: 2022-01-19T12:00:54.000Z - village_data_synced_at: 2022-01-19T12:00:54.000Z - ennoblement_data_synced_at: 2022-01-19T12:00:54.000Z + created_at: "2022-01-19T12:00:54.000Z" + player_data_synced_at: "2022-01-19T12:00:54.000Z" + player_snapshots_created_at: "2022-01-19T12:00:54.000Z" + tribe_data_synced_at: "2022-01-19T12:00:54.000Z" + tribe_snapshots_created_at: "2022-01-19T12:00:54.000Z" + village_data_synced_at: "2022-01-19T12:00:54.000Z" + ennoblement_data_synced_at: "2022-01-19T12:00:54.000Z" version_code: de - _id: de188 key: de188 @@ -30,13 +30,13 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - created_at: 2022-03-19T12:00:54.000Z - player_data_synced_at: 2022-03-19T12:00:54.000Z - player_snapshots_created_at: 2022-03-19T12:00:54.000Z - tribe_data_synced_at: 2022-03-19T12:00:54.000Z - tribe_snapshots_created_at: 2022-03-19T12:00:54.000Z - village_data_synced_at: 2022-03-19T12:00:54.000Z - ennoblement_data_synced_at: 2022-03-19T12:00:54.000Z + created_at: "2022-03-19T12:00:54.000Z" + player_data_synced_at: "2022-03-19T12:00:54.000Z" + player_snapshots_created_at: "2022-03-19T12:00:54.000Z" + tribe_data_synced_at: "2022-03-19T12:00:54.000Z" + tribe_snapshots_created_at: "2022-03-19T12:00:54.000Z" + village_data_synced_at: "2022-03-19T12:00:54.000Z" + ennoblement_data_synced_at: "2022-03-19T12:00:54.000Z" version_code: de - _id: en113 key: en113 @@ -49,13 +49,13 @@ num_player_villages: 41000 num_barbarian_villages: 700 num_bonus_villages: 1024 - created_at: 2021-04-02T16:01:25.000Z - player_data_synced_at: 2021-04-02T16:01:25.000Z - player_snapshots_created_at: 2021-04-02T16:01:25.000Z - tribe_data_synced_at: 2021-04-02T16:01:25.000Z - tribe_snapshots_created_at: 2021-04-02T16:01:25.000Z - village_data_synced_at: 2021-04-02T16:01:25.000Z - ennoblement_data_synced_at: 2021-04-02T16:01:25.000Z + created_at: "2021-04-02T16:01:25.000Z" + player_data_synced_at: "2021-04-02T16:01:25.000Z" + player_snapshots_created_at: "2021-04-02T16:01:25.000Z" + tribe_data_synced_at: "2021-04-02T16:01:25.000Z" + tribe_snapshots_created_at: "2021-04-02T16:01:25.000Z" + village_data_synced_at: "2021-04-02T16:01:25.000Z" + ennoblement_data_synced_at: "2021-04-02T16:01:25.000Z" version_code: en - _id: it70 key: it70 @@ -68,13 +68,13 @@ num_player_villages: 3200 num_barbarian_villages: 1682 num_bonus_villages: 256 - created_at: 2022-03-19T12:00:04.000Z - player_data_synced_at: 2022-03-19T12:00:04.000Z - player_snapshots_created_at: 2022-03-19T12:00:04.000Z - tribe_data_synced_at: 2022-03-19T12:00:04.000Z - tribe_snapshots_created_at: 2022-03-19T12:00:04.000Z - village_data_synced_at: 2022-03-19T12:00:04.000Z - ennoblement_data_synced_at: 2022-03-19T12:00:04.000Z + created_at: "2022-03-19T12:00:04.000Z" + player_data_synced_at: "2022-03-19T12:00:04.000Z" + player_snapshots_created_at: "2022-03-19T12:00:04.000Z" + tribe_data_synced_at: "2022-03-19T12:00:04.000Z" + tribe_snapshots_created_at: "2022-03-19T12:00:04.000Z" + village_data_synced_at: "2022-03-19T12:00:04.000Z" + ennoblement_data_synced_at: "2022-03-19T12:00:04.000Z" version_code: it - _id: pl169 key: pl169 @@ -87,13 +87,13 @@ num_player_villages: 48500 num_barbarian_villages: 1574 num_bonus_villages: 2048 - created_at: 2022-03-19T12:01:39.000Z - player_data_synced_at: 2022-03-19T12:01:39.000Z - player_snapshots_created_at: 2022-03-19T12:01:39.000Z - tribe_data_synced_at: 2022-03-19T12:01:39.000Z - tribe_snapshots_created_at: 2022-03-19T12:01:39.000Z - village_data_synced_at: 2022-03-19T12:01:39.000Z - ennoblement_data_synced_at: 2022-03-19T12:01:39.000Z + created_at: "2022-03-19T12:01:39.000Z" + player_data_synced_at: "2022-03-19T12:01:39.000Z" + player_snapshots_created_at: "2022-03-19T12:01:39.000Z" + tribe_data_synced_at: "2022-03-19T12:01:39.000Z" + tribe_snapshots_created_at: "2022-03-19T12:01:39.000Z" + village_data_synced_at: "2022-03-19T12:01:39.000Z" + ennoblement_data_synced_at: "2022-03-19T12:01:39.000Z" version_code: pl - model: Tribe rows: @@ -116,8 +116,9 @@ all_points: 86151161 rank: 1 dominance: 58.367997781475324 - created_at: 2021-03-07T11:00:51.000Z + created_at: "2021-03-07T11:00:51.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=772 + most_points: 86151161 - rank_att: 4 score_att: 84537872 rank_def: 2 @@ -137,8 +138,9 @@ all_points: 3274015 rank: 5 dominance: 2.3086522462562398 - created_at: 2021-03-16T01:00:54.000Z + created_at: "2021-03-16T01:00:54.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=950 + most_points: 3274015 - rank_att: 2 score_att: 91976316 rank_def: 21 @@ -158,8 +160,9 @@ all_points: 14729501 rank: 2 dominance: 10.461730449251249 - created_at: 2021-04-17T09:01:01.000Z + created_at: "2021-04-17T09:01:01.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=1307 + most_points: 14729501 - rank_att: 3 score_att: 87034216 rank_def: 3 @@ -179,8 +182,9 @@ all_points: 2541853 rank: 7 dominance: 1.8996117581808099 - created_at: 2021-02-26T15:00:43.000Z + created_at: "2021-02-26T15:00:43.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=97 + most_points: 2541853 - rank_att: 5 score_att: 81487046 rank_def: 5 @@ -200,8 +204,9 @@ all_points: 3431912 rank: 4 dominance: 2.4334442595673877 - created_at: 2021-02-24T22:00:55.000Z + created_at: "2021-02-24T22:00:55.000Z" profile_url: https://de188.die-staemme.de/game.php?screen=info_ally&id=64 + most_points: 3431912 - rank_att: 1 score_att: 1449031872 rank_def: 1 @@ -221,8 +226,9 @@ all_points: 266237628 rank: 1 dominance: 54.27478896611433 - created_at: 2020-06-22T13:45:46.000Z + created_at: "2020-06-22T13:45:46.000Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=122 + most_points: 266237628 - rank_att: 2 score_att: 508057735 rank_def: 2 @@ -242,8 +248,9 @@ all_points: 7407640 rank: 7 dominance: 1.9335754310863134 - created_at: 2020-06-22T13:45:46.000Z + created_at: "2020-06-22T13:45:46.000Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=112 + most_points: 7407640 - rank_att: 3 score_att: 321486919 rank_def: 2 @@ -263,9 +270,10 @@ all_points: 268858 rank: 30 dominance: 0 - created_at: 2020-06-22T13:45:46.000Z - deleted_at: 2020-12-03T18:01:07Z + created_at: "2020-06-22T13:45:46.000Z" + deleted_at: "2020-12-03T18:01:07Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=1337 + most_points: 268858 - rank_att: 3 score_att: 231146512 rank_def: 5 @@ -285,8 +293,9 @@ all_points: 47701113 rank: 2 dominance: 10.891993939539693 - created_at: 2020-06-22T13:45:46.000Z + created_at: "2020-06-22T13:45:46.000Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=2544 + most_points: 47701113 - rank_att: 5 score_att: 63878040 rank_def: 3 @@ -306,9 +315,10 @@ all_points: 72446 rank: 40 dominance: 0 - created_at: 2020-06-22T13:45:46.000Z - deleted_at: 2020-12-07T04:00:56Z + created_at: "2020-06-22T13:45:46.000Z" + deleted_at: "2020-12-07T04:00:56Z" profile_url: https://en113.tribalwars.net/game.php?screen=info_ally&id=1115 + most_points: 72446 - rank_att: 1 score_att: 132897 rank_def: 3 @@ -328,8 +338,9 @@ all_points: 182130 rank: 1 dominance: 3.026070763500931 - created_at: 2022-02-21T20:00:07.000Z + created_at: "2022-02-21T20:00:07.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=5 + most_points: 182130 - rank_att: 2 score_att: 73109 rank_def: 6 @@ -349,8 +360,9 @@ all_points: 155593 rank: 2 dominance: 2.653631284916201 - created_at: 2022-02-24T12:00:05.000Z + created_at: "2022-02-24T12:00:05.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=30 + most_points: 155593 - rank_att: 4 score_att: 48518 rank_def: 16 @@ -370,8 +382,9 @@ all_points: 147717 rank: 3 dominance: 3.35195530726257 - created_at: 2022-02-21T19:00:08.000Z + created_at: "2022-02-21T19:00:08.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=1 + most_points: 147717 - rank_att: 5 score_att: 47159 rank_def: 1 @@ -391,8 +404,9 @@ all_points: 142377 rank: 4 dominance: 2.60707635009311 - created_at: 2022-02-21T20:00:07.000Z + created_at: "2022-02-21T20:00:07.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=3 + most_points: 142377 - rank_att: 6 score_att: 46008 rank_def: 2 @@ -412,8 +426,9 @@ all_points: 105512 rank: 5 dominance: 2.1415270018621975 - created_at: 2022-02-24T12:00:05.000Z + created_at: "2022-02-24T12:00:05.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_ally&id=31 + most_points: 105512 - rank_att: 1 score_att: 669292167 rank_def: 5 @@ -433,8 +448,9 @@ all_points: 143350058 rank: 1 dominance: 29.76912481240106 - created_at: 2021-09-02T23:01:13.000Z + created_at: "2021-09-02T23:01:13.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=28 + most_points: 114277979 - rank_att: 3 score_att: 358150686 rank_def: 3 @@ -454,8 +470,9 @@ all_points: 105576587 rank: 2 dominance: 22.10480870047902 - created_at: 2021-09-02T18:01:08.000Z + created_at: "2021-09-02T18:01:08.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=2 + most_points: 97684589 - rank_att: 2 score_att: 513902873 rank_def: 6 @@ -475,8 +492,9 @@ all_points: 97812820 rank: 3 dominance: 20.87128142924693 - created_at: 2021-09-02T22:00:37.000Z + created_at: "2021-09-02T22:00:37.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=27 + most_points: 91951132 - rank_att: 4 score_att: 228636414 rank_def: 1 @@ -496,8 +514,9 @@ all_points: 30608034 rank: 4 dominance: 7.13595526407763 - created_at: 2021-09-02T18:01:08.000Z + created_at: "2021-09-02T18:01:08.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=1 + most_points: 28417793 - rank_att: 5 score_att: 163168564 rank_def: 13 @@ -517,8 +536,9 @@ all_points: 8188040 rank: 6 dominance: 1.8667379371312267 - created_at: 2021-09-08T02:00:58.000Z + created_at: "2021-09-08T02:00:58.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_ally&id=122 + most_points: 8188040 - model: Player rows: - rank_att: 10 @@ -536,8 +556,9 @@ points: 9199775 rank: 1 tribe_id: 772 - created_at: 2021-06-25T11:00:53Z + created_at: "2021-06-25T11:00:53Z" profile_url: https://www.internalbenchmark.com/e-markets/proactive/user-centric + most_points: 9199775 - rank_att: 6 score_att: 48477001 rank_def: 11 @@ -553,8 +574,9 @@ points: 7942304 rank: 2 tribe_id: 772 - created_at: 2021-02-24T18:01:02Z + created_at: "2021-02-24T18:01:02Z" profile_url: http://www.dynamicproactive.net/engineer + most_points: 7942304 - rank_att: 3 score_att: 68234776 rank_def: 5 @@ -570,8 +592,9 @@ points: 7564530 rank: 3 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: http://www.centralvisionary.name/transform/deploy + most_points: 7564530 - rank_att: 1 score_att: 81919069 rank_def: 32 @@ -587,8 +610,9 @@ points: 6809027 rank: 4 tribe_id: 772 - created_at: 2021-03-03T09:00:59Z + created_at: "2021-03-03T09:00:59Z" profile_url: https://www.directsyndicate.info/value-added/functionalities/e-business + most_points: 6809027 - rank_att: 4 score_att: 54192613 rank_def: 18 @@ -604,8 +628,9 @@ points: 6276222 rank: 5 tribe_id: 772 - created_at: 2021-03-03T22:00:35Z + created_at: "2021-03-03T22:00:35Z" profile_url: https://www.regionalinfomediaries.io/methodologies + most_points: 6276222 - rank_att: 9 score_att: 32776138 rank_def: 23 @@ -621,8 +646,9 @@ points: 5744486 rank: 6 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: https://www.chiefout-of-the-box.biz/channels/e-services + most_points: 5744486 - rank_att: 8 score_att: 37953835 rank_def: 61 @@ -638,8 +664,9 @@ points: 5174020 rank: 7 tribe_id: 1307 - created_at: 2021-03-03T23:00:42Z + created_at: "2021-03-03T23:00:42Z" profile_url: http://www.internalengage.com/e-services + most_points: 5174020 - rank_att: 7 score_att: 43477145 rank_def: 25 @@ -655,8 +682,9 @@ points: 5016391 rank: 8 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: http://www.dynamiccontent.net/recontextualize/customized/user-centric/reintermediate + most_points: 5016391 - rank_att: 17 score_att: 23327154 rank_def: 64 @@ -672,8 +700,9 @@ points: 4909432 rank: 9 tribe_id: 772 - created_at: 2021-08-11T20:00:45Z + created_at: "2021-08-11T20:00:45Z" profile_url: https://www.principalembrace.biz/cross-media/methodologies/metrics/architectures + most_points: 4909432 - rank_att: 5 score_att: 50199626 rank_def: 6 @@ -689,8 +718,9 @@ points: 4606185 rank: 10 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: https://www.dynamicvisualize.io/sticky/e-business + most_points: 4606185 - rank_att: 23 score_att: 16752677 rank_def: 31 @@ -706,8 +736,9 @@ points: 4564831 rank: 11 tribe_id: 772 - created_at: 2021-03-03T08:00:40Z + created_at: "2021-03-03T08:00:40Z" profile_url: https://www.internalmetrics.net/webservices + most_points: 4564831 - rank_att: 19 score_att: 20471113 rank_def: 53 @@ -723,8 +754,9 @@ points: 3559220 rank: 13 tribe_id: 1307 - created_at: 2021-04-11T09:00:52Z + created_at: "2021-04-11T09:00:52Z" profile_url: https://www.investortarget.com/embrace/deliver + most_points: 3559220 - rank_att: 13 score_att: 24458529 rank_def: 83 @@ -740,8 +772,9 @@ points: 3485616 rank: 14 tribe_id: 772 - created_at: 2021-02-25T02:00:40Z + created_at: "2021-02-25T02:00:40Z" profile_url: http://www.investortransform.name/vortals/one-to-one/viral + most_points: 3485616 - rank_att: 11 score_att: 26156588 rank_def: 24 @@ -757,8 +790,9 @@ points: 3431912 rank: 15 tribe_id: 64 - created_at: 2021-02-24T11:01:08Z + created_at: "2021-02-24T11:01:08Z" profile_url: https://www.internaltransparent.io/value-added + most_points: 3431912 - rank_att: 12 score_att: 24928976 rank_def: 49 @@ -774,8 +808,9 @@ points: 3335177 rank: 16 tribe_id: 772 - created_at: 2021-03-07T04:01:01Z + created_at: "2021-03-07T04:01:01Z" profile_url: https://www.globalcustomized.info/24-365 + most_points: 3335177 - rank_att: 15 score_att: 23825308 rank_def: 95 @@ -791,8 +826,9 @@ points: 3045301 rank: 17 tribe_id: 772 - created_at: 2021-03-04T07:00:57Z + created_at: "2021-03-04T07:00:57Z" profile_url: http://www.dynamicempower.biz/exploit + most_points: 3045301 - rank_att: 21 score_att: 17209806 rank_def: 68 @@ -808,8 +844,9 @@ points: 2977167 rank: 18 tribe_id: 772 - created_at: 2021-03-02T22:00:58Z + created_at: "2021-03-02T22:00:58Z" profile_url: http://www.corporatedeliverables.com/efficient + most_points: 2977167 - rank_att: 18 score_att: 22438664 rank_def: 59 @@ -825,8 +862,9 @@ points: 2585149 rank: 19 tribe_id: 772 - created_at: 2021-03-02T20:00:43Z + created_at: "2021-03-02T20:00:43Z" profile_url: http://www.centraldisintermediate.name/deliverables/markets + most_points: 2585149 - rank_att: 2 score_att: 73312341 rank_def: 153 @@ -842,8 +880,9 @@ points: 2560358 rank: 20 tribe_id: 772 - created_at: 2021-03-03T12:00:46Z + created_at: "2021-03-03T12:00:46Z" profile_url: https://www.dynamicmonetize.com/matrix/iterate/generate + most_points: 2560358 - rank_att: 16 score_att: 23380368 rank_def: 58 @@ -859,8 +898,9 @@ points: 2504750 rank: 22 tribe_id: 772 - created_at: 2021-06-07T20:00:47Z + created_at: "2021-06-07T20:00:47Z" profile_url: https://www.futureholistic.biz/communities/interactive/enterprise + most_points: 2504750 - rank_att: 22 score_att: 17089210 rank_def: 3 @@ -876,8 +916,9 @@ points: 2445568 rank: 24 tribe_id: 97 - created_at: 2021-02-25T17:00:41Z + created_at: "2021-02-25T17:00:41Z" profile_url: http://www.futurerevolutionize.name/transform/empower/unleash/unleash + most_points: 2445568 - rank_att: 28 score_att: 11631947 rank_def: 73 @@ -893,8 +934,9 @@ points: 2216967 rank: 25 tribe_id: 1307 - created_at: 2021-02-28T13:01:02Z + created_at: "2021-02-28T13:01:02Z" profile_url: http://www.principalscale.com/vortals/b2c + most_points: 2216967 - rank_att: 45 score_att: 2596759 rank_def: 79 @@ -910,8 +952,9 @@ points: 2151423 rank: 26 tribe_id: 1307 - created_at: 2021-04-27T10:00:42Z + created_at: "2021-04-27T10:00:42Z" profile_url: https://www.centralmagnetic.info/deliver/optimize + most_points: 2151423 - rank_att: 29 score_att: 9610308 rank_def: 91 @@ -927,8 +970,9 @@ points: 1889588 rank: 28 tribe_id: 772 - created_at: 2021-08-10T13:00:55Z + created_at: "2021-08-10T13:00:55Z" profile_url: http://www.forwardcross-media.com/embrace + most_points: 1889588 - rank_att: 25 score_att: 12987646 rank_def: 10 @@ -944,8 +988,9 @@ points: 1782960 rank: 30 tribe_id: 950 - created_at: 2021-03-03T09:00:59Z + created_at: "2021-03-03T09:00:59Z" profile_url: https://www.districtdeploy.io/harness/leading-edge + most_points: 1782960 - rank_att: 41 score_att: 4196174 rank_def: 78 @@ -961,8 +1006,9 @@ points: 1623780 rank: 31 tribe_id: 1307 - created_at: 2021-04-12T08:01:05Z + created_at: "2021-04-12T08:01:05Z" profile_url: https://www.productmindshare.io/repurpose/monetize/synergize/viral + most_points: 1623780 - rank_att: 40 score_att: 4338597 rank_def: 4 @@ -978,8 +1024,9 @@ points: 1360052 rank: 32 tribe_id: 950 - created_at: 2021-03-03T14:00:59Z + created_at: "2021-03-03T14:00:59Z" profile_url: http://www.directstrategize.org/grow + most_points: 1360052 - rank_att: 146 score_att: 1362 rank_def: 1 @@ -995,8 +1042,9 @@ points: 575920 rank: 44 tribe_id: 772 - created_at: 2021-08-18T19:00:38Z + created_at: "2021-08-18T19:00:38Z" profile_url: http://www.productmission-critical.info/seamless/incentivize + most_points: 575920 - rank_att: 69 score_att: 864699 rank_def: 159 @@ -1012,8 +1060,9 @@ points: 558952 rank: 46 tribe_id: 772 - created_at: 2021-08-12T02:00:50Z + created_at: "2021-08-12T02:00:50Z" profile_url: https://www.humanbleeding-edge.io/action-items/iterate/sexy + most_points: 558952 - rank_att: 27 score_att: 11849591 rank_def: 2 @@ -1029,8 +1078,9 @@ points: 96285 rank: 73 tribe_id: 97 - created_at: 2021-02-28T13:01:02Z + created_at: "2021-02-28T13:01:02Z" profile_url: http://www.investormindshare.net/bricks-and-clicks + most_points: 96285 - rank_att: 35 score_att: 6037932 rank_def: 20 @@ -1046,8 +1096,9 @@ points: 82311 rank: 76 tribe_id: 950 - created_at: 2021-06-19T21:00:58Z + created_at: "2021-06-19T21:00:58Z" profile_url: https://www.principalwhiteboard.io/cultivate/markets + most_points: 82311 - rank_att: 26 score_att: 12109017 rank_def: 7 @@ -1063,8 +1114,9 @@ points: 48692 rank: 82 tribe_id: 950 - created_at: 2021-03-07T21:00:40Z + created_at: "2021-03-07T21:00:40Z" profile_url: http://www.centralsyndicate.com/harness/visionary/b2c + most_points: 48692 - rank_att: 79 score_att: 371697 rank_def: 105 @@ -1080,8 +1132,9 @@ points: 4091 rank: 122 tribe_id: 1307 - created_at: 2021-03-01T06:00:55Z + created_at: "2021-03-01T06:00:55Z" profile_url: http://www.dynamictechnologies.org/bandwidth/exploit/optimize/bandwidth + most_points: 4091 - rank_att: 55 score_att: 1794284 rank_def: 94 @@ -1097,8 +1150,9 @@ points: 0 rank: 177 tribe_id: 64 - created_at: 2021-02-25T13:00:44Z + created_at: "2021-02-25T13:00:44Z" profile_url: https://www.forwardviral.org/synergistic/aggregate/channels + most_points: 0 - rank_att: 1 score_att: 238728441 rank_def: 1 @@ -1114,8 +1168,9 @@ points: 30831484 rank: 1 tribe_id: 122 - created_at: 2020-04-01T05:48:57Z + created_at: "2020-04-01T05:48:57Z" profile_url: https://www.futureclicks-and-mortar.name/b2c/supply-chains + most_points: 30831484 - rank_att: 2 score_att: 177308501 rank_def: 18 @@ -1131,8 +1186,9 @@ points: 18581487 rank: 2 tribe_id: 122 - created_at: 2020-04-07T11:09:23Z + created_at: "2020-04-07T11:09:23Z" profile_url: http://www.globalintuitive.net/solutions + most_points: 18581487 - rank_att: 16 score_att: 43305549 rank_def: 5 @@ -1148,8 +1204,9 @@ points: 17185328 rank: 3 tribe_id: 122 - created_at: 2020-04-08T02:10:08Z + created_at: "2020-04-08T02:10:08Z" profile_url: https://www.internaldrive.net/synergies + most_points: 17185328 - rank_att: 16 score_att: 43305549 rank_def: 5 @@ -1165,9 +1222,10 @@ points: 17185328 rank: 3 tribe_id: 0 - created_at: 2020-04-08T02:10:08Z - deleted_at: 2020-12-03T18:01:07Z + created_at: "2020-04-08T02:10:08Z" + deleted_at: "2020-12-03T18:01:07Z" profile_url: http://www.forwardweb-enabled.io/paradigms/roi/turn-key/dynamic + most_points: 17185328 - rank_att: 8 score_att: 78782855 rank_def: 27 @@ -1183,8 +1241,9 @@ points: 16287830 rank: 4 tribe_id: 122 - created_at: 2020-04-13T06:15:34Z + created_at: "2020-04-13T06:15:34Z" profile_url: https://www.centralsolutions.io/deliverables/e-enable/b2b + most_points: 16287830 - rank_att: 8 score_att: 78782855 rank_def: 27 @@ -1200,9 +1259,10 @@ points: 16287830 rank: 4 tribe_id: 0 - created_at: 2020-04-13T06:15:34Z - deleted_at: 2020-06-22T13:45:46Z + created_at: "2020-04-13T06:15:34Z" + deleted_at: "2020-06-22T13:45:46Z" profile_url: https://www.dynamice-commerce.com/implement/portals/vertical/exploit + most_points: 16287830 - rank_att: 6 score_att: 95156312 rank_def: 23 @@ -1218,8 +1278,9 @@ points: 15726384 rank: 5 tribe_id: 122 - created_at: 2020-04-02T20:41:50Z + created_at: "2020-04-02T20:41:50Z" profile_url: http://www.globalstrategize.io/streamline + most_points: 15726384 - rank_att: 3 score_att: 121092867 rank_def: 33 @@ -1235,8 +1296,9 @@ points: 15126767 rank: 6 tribe_id: 122 - created_at: 2020-04-01T10:17:39Z + created_at: "2020-04-01T10:17:39Z" profile_url: http://www.regionalmetrics.com/action-items/convergence/best-of-breed/unleash + most_points: 15126767 - rank_att: 10 score_att: 75464147 rank_def: 16 @@ -1252,8 +1314,9 @@ points: 14916914 rank: 7 tribe_id: 122 - created_at: 2020-04-14T20:04:32Z + created_at: "2020-04-14T20:04:32Z" profile_url: http://www.productmaximize.org/scalable/orchestrate + most_points: 14916914 - rank_att: 29 score_att: 27919397 rank_def: 72 @@ -1269,8 +1332,9 @@ points: 14458961 rank: 8 tribe_id: 122 - created_at: 2020-04-06T01:40:26Z + created_at: "2020-04-06T01:40:26Z" profile_url: https://www.chiefworld-class.org/robust/interfaces/robust + most_points: 14458961 - rank_att: 7 score_att: 83548314 rank_def: 10 @@ -1286,8 +1350,9 @@ points: 13509399 rank: 9 tribe_id: 122 - created_at: 2020-04-15T17:05:34Z + created_at: "2020-04-15T17:05:34Z" profile_url: http://www.corporateproactive.name/platforms/deploy + most_points: 13509399 - rank_att: 37 score_att: 23277234 rank_def: 45 @@ -1303,8 +1368,9 @@ points: 12224365 rank: 10 tribe_id: 122 - created_at: 2020-04-01T16:37:11Z + created_at: "2020-04-01T16:37:11Z" profile_url: http://www.principalsyndicate.biz/visionary + most_points: 12224365 - rank_att: 12 score_att: 65687303 rank_def: 46 @@ -1320,8 +1386,9 @@ points: 12149690 rank: 11 tribe_id: 122 - created_at: 2020-04-01T05:00:16Z + created_at: "2020-04-01T05:00:16Z" profile_url: http://www.principalb2b.net/e-business/deliver/e-markets + most_points: 12149690 - rank_att: 4 score_att: 110546924 rank_def: 13 @@ -1337,8 +1404,9 @@ points: 11113524 rank: 12 tribe_id: 122 - created_at: 2020-04-10T20:06:25Z + created_at: "2020-04-10T20:06:25Z" profile_url: https://www.globalb2b.org/b2b/deliver/relationships + most_points: 11113524 - rank_att: 15 score_att: 51470783 rank_def: 9 @@ -1354,8 +1422,9 @@ points: 10956298 rank: 13 tribe_id: 122 - created_at: 2020-04-01T08:34:14Z + created_at: "2020-04-01T08:34:14Z" profile_url: http://www.chiefoptimize.org/experiences/back-end/collaborative + most_points: 10956298 - rank_att: 28 score_att: 28111653 rank_def: 15 @@ -1371,8 +1440,9 @@ points: 10889334 rank: 14 tribe_id: 122 - created_at: 2020-04-03T18:37:57Z + created_at: "2020-04-03T18:37:57Z" profile_url: http://www.dynamicsynergistic.io/monetize + most_points: 10889334 - rank_att: 14 score_att: 55398523 rank_def: 48 @@ -1388,8 +1458,9 @@ points: 10502929 rank: 15 tribe_id: 122 - created_at: 2020-05-09T03:49:46Z + created_at: "2020-05-09T03:49:46Z" profile_url: https://www.forwardweb-readiness.io/reinvent/monetize + most_points: 10502929 - rank_att: 11 score_att: 70419552 rank_def: 7 @@ -1405,8 +1476,9 @@ points: 9967542 rank: 16 tribe_id: 122 - created_at: 2020-03-31T06:07:18Z + created_at: "2020-03-31T06:07:18Z" profile_url: http://www.leadniches.name/empower/mission-critical/integrate/evolve + most_points: 9967542 - rank_att: 35 score_att: 25123225 rank_def: 112 @@ -1422,8 +1494,9 @@ points: 9401906 rank: 17 tribe_id: 2544 - created_at: 2020-05-22T15:49:05Z + created_at: "2020-05-22T15:49:05Z" profile_url: http://www.humanchannels.com/distributed/morph/deliverables + most_points: 9401906 - rank_att: 20 score_att: 35490711 rank_def: 86 @@ -1439,8 +1512,9 @@ points: 9179296 rank: 18 tribe_id: 2544 - created_at: 2020-04-11T10:30:20Z + created_at: "2020-04-11T10:30:20Z" profile_url: http://www.dynamicdeploy.info/customized + most_points: 9179296 - rank_att: 18 score_att: 38142399 rank_def: 19 @@ -1456,8 +1530,9 @@ points: 8444247 rank: 19 tribe_id: 122 - created_at: 2020-04-02T02:02:00Z + created_at: "2020-04-02T02:02:00Z" profile_url: https://www.directgrow.net/functionalities + most_points: 8444247 - rank_att: 22 score_att: 33892144 rank_def: 50 @@ -1473,8 +1548,9 @@ points: 8136128 rank: 20 tribe_id: 122 - created_at: 2020-04-19T20:12:30Z + created_at: "2020-04-19T20:12:30Z" profile_url: http://www.principaldrive.info/real-time/benchmark/unleash/revolutionary + most_points: 8136128 - rank_att: 24 score_att: 30215760 rank_def: 76 @@ -1490,8 +1566,9 @@ points: 7908145 rank: 21 tribe_id: 122 - created_at: 2020-04-11T18:22:06Z + created_at: "2020-04-11T18:22:06Z" profile_url: https://www.districtwebservices.io/platforms/efficient + most_points: 7908145 - rank_att: 31 score_att: 26410405 rank_def: 79 @@ -1507,8 +1584,9 @@ points: 7753685 rank: 22 tribe_id: 2544 - created_at: 2020-05-19T15:09:34Z + created_at: "2020-05-19T15:09:34Z" profile_url: http://www.nationalworld-class.net/unleash + most_points: 7753685 - rank_att: 25 score_att: 29580638 rank_def: 38 @@ -1524,8 +1602,9 @@ points: 7320872 rank: 23 tribe_id: 122 - created_at: 2020-03-24T03:52:15Z + created_at: "2020-03-24T03:52:15Z" profile_url: http://www.chiefmesh.info/e-business/matrix/b2b/enable + most_points: 7320872 - rank_att: 48 score_att: 14720196 rank_def: 69 @@ -1541,8 +1620,9 @@ points: 4300119 rank: 33 tribe_id: 2544 - created_at: 2020-04-03T08:17:44Z + created_at: "2020-04-03T08:17:44Z" profile_url: https://www.forwardharness.net/benchmark/magnetic/e-business/drive + most_points: 4300119 - rank_att: 68 score_att: 5429484 rank_def: 142 @@ -1558,8 +1638,9 @@ points: 3992739 rank: 36 tribe_id: 2544 - created_at: 2020-04-14T20:12:27Z + created_at: "2020-04-14T20:12:27Z" profile_url: http://www.corporateinfomediaries.info/out-of-the-box + most_points: 3992739 - rank_att: 51 score_att: 11793759 rank_def: 151 @@ -1575,8 +1656,9 @@ points: 3458362 rank: 39 tribe_id: 2544 - created_at: 2020-04-06T09:09:37Z + created_at: "2020-04-06T09:09:37Z" profile_url: https://www.dynamicenterprise.net/transparent + most_points: 3458362 - rank_att: 32 score_att: 26195200 rank_def: 21 @@ -1592,8 +1674,9 @@ points: 3442528 rank: 40 tribe_id: 2544 - created_at: 2020-05-11T16:20:42Z + created_at: "2020-05-11T16:20:42Z" profile_url: https://www.internalrepurpose.info/real-time + most_points: 3442528 - rank_att: 17 score_att: 42630169 rank_def: 4 @@ -1609,8 +1692,9 @@ points: 2328167 rank: 45 tribe_id: 112 - created_at: 2020-03-30T03:02:46Z + created_at: "2020-03-30T03:02:46Z" profile_url: https://www.nationalsexy.info/implement/viral/expedite + most_points: 2328167 - rank_att: 43 score_att: 16900171 rank_def: 35 @@ -1626,8 +1710,9 @@ points: 2035247 rank: 49 tribe_id: 112 - created_at: 2020-03-28T14:47:04Z + created_at: "2020-03-28T14:47:04Z" profile_url: http://www.directscale.net/bleeding-edge + most_points: 2035247 - rank_att: 53 score_att: 10728652 rank_def: 119 @@ -1643,8 +1728,9 @@ points: 1992849 rank: 51 tribe_id: 2544 - created_at: 2020-04-09T21:47:29Z + created_at: "2020-04-09T21:47:29Z" profile_url: http://www.internationalbrand.com/supply-chains/front-end + most_points: 1992849 - rank_att: 63 score_att: 6155696 rank_def: 42 @@ -1660,8 +1746,9 @@ points: 1870534 rank: 55 tribe_id: 2544 - created_at: 2020-05-04T03:17:50Z + created_at: "2020-05-04T03:17:50Z" profile_url: http://www.productgrow.com/content + most_points: 1870534 - rank_att: 45 score_att: 16309885 rank_def: 55 @@ -1677,8 +1764,9 @@ points: 1642528 rank: 62 tribe_id: 2544 - created_at: 2020-04-16T16:55:54Z + created_at: "2020-04-16T16:55:54Z" profile_url: https://www.nationalaggregate.info/schemas/bleeding-edge/portals + most_points: 1642528 - rank_att: 52 score_att: 11180243 rank_def: 28 @@ -1694,8 +1782,9 @@ points: 1180598 rank: 69 tribe_id: 112 - created_at: 2020-03-28T04:42:18Z + created_at: "2020-03-28T04:42:18Z" profile_url: https://www.dynamicexpedite.io/deliverables/impactful + most_points: 1180598 - rank_att: 23 score_att: 33590082 rank_def: 2 @@ -1711,8 +1800,9 @@ points: 725485 rank: 78 tribe_id: 112 - created_at: 2020-04-08T15:11:20Z + created_at: "2020-04-08T15:11:20Z" profile_url: http://www.nationalefficient.com/grow + most_points: 725485 - rank_att: 85 score_att: 1341627 rank_def: 80 @@ -1728,8 +1818,9 @@ points: 666567 rank: 79 tribe_id: 2544 - created_at: 2020-04-23T04:21:21Z + created_at: "2020-04-23T04:21:21Z" profile_url: http://www.futuresynergize.net/impactful/killer/drive + most_points: 666567 - rank_att: 59 score_att: 6840535 rank_def: 29 @@ -1745,8 +1836,9 @@ points: 580222 rank: 85 tribe_id: 112 - created_at: 2020-04-07T14:38:10Z + created_at: "2020-04-07T14:38:10Z" profile_url: http://www.investordisintermediate.name/web-readiness/virtual/systems + most_points: 580222 - rank_att: 47 score_att: 14830290 rank_def: 17 @@ -1762,8 +1854,9 @@ points: 557921 rank: 86 tribe_id: 112 - created_at: 2020-03-28T18:34:56Z + created_at: "2020-03-28T18:34:56Z" profile_url: https://www.dynamic24-365.com/extensible + most_points: 557921 - rank_att: 15 score_att: 14555 rank_def: 88 @@ -1779,8 +1872,9 @@ points: 29518 rank: 1 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.dynamicb2b.com/roi/e-business/b2c/innovative + most_points: 29518 - rank_att: 266 score_att: 47 rank_def: 94 @@ -1796,8 +1890,9 @@ points: 25244 rank: 2 tribe_id: 1 - created_at: 2022-03-02T11:00:08Z + created_at: "2022-03-02T11:00:08Z" profile_url: https://www.directniches.com/unleash + most_points: 25244 - rank_att: 7 score_att: 21493 rank_def: 61 @@ -1813,8 +1908,9 @@ points: 19164 rank: 3 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.productproductize.info/user-centric + most_points: 19164 - rank_att: 16 score_att: 13228 rank_def: 109 @@ -1830,8 +1926,9 @@ points: 17179 rank: 6 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.investorcross-platform.org/next-generation/dynamic + most_points: 17179 - rank_att: 33 score_att: 5447 rank_def: 50 @@ -1847,8 +1944,9 @@ points: 17035 rank: 7 tribe_id: 31 - created_at: 2022-02-22T22:00:06Z + created_at: "2022-02-22T22:00:06Z" profile_url: https://www.centraldisintermediate.name/engineer/world-class + most_points: 17035 - rank_att: 12 score_att: 15800 rank_def: 0 @@ -1864,8 +1962,9 @@ points: 15523 rank: 8 tribe_id: 30 - created_at: 2022-02-24T20:00:07Z + created_at: "2022-02-24T20:00:07Z" profile_url: http://www.nationalengage.org/unleash/mesh/front-end/back-end + most_points: 15523 - rank_att: 5 score_att: 23950 rank_def: 303 @@ -1881,8 +1980,9 @@ points: 14830 rank: 10 tribe_id: 5 - created_at: 2022-02-24T14:00:02Z + created_at: "2022-02-24T14:00:02Z" profile_url: http://www.internaldisintermediate.net/monetize/partnerships/communities/metrics + most_points: 14830 - rank_att: 0 score_att: 0 rank_def: 275 @@ -1898,8 +1998,9 @@ points: 14588 rank: 12 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.chiefproactive.io/collaborative/orchestrate/mindshare/whiteboard + most_points: 14588 - rank_att: 61 score_att: 2640 rank_def: 308 @@ -1915,8 +2016,9 @@ points: 13451 rank: 13 tribe_id: 3 - created_at: 2022-02-23T13:00:08Z + created_at: "2022-02-23T13:00:08Z" profile_url: https://www.directgranular.biz/sexy/plug-and-play + most_points: 13451 - rank_att: 9 score_att: 19560 rank_def: 321 @@ -1932,8 +2034,9 @@ points: 13325 rank: 14 tribe_id: 5 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: https://www.directfrictionless.net/scale/enhance/convergence/enterprise + most_points: 13325 - rank_att: 2 score_att: 31525 rank_def: 559 @@ -1949,8 +2052,9 @@ points: 13357 rank: 15 tribe_id: 5 - created_at: 2022-02-22T13:00:09Z + created_at: "2022-02-22T13:00:09Z" profile_url: https://www.dynamiccompelling.biz/partnerships + most_points: 13357 - rank_att: 220 score_att: 133 rank_def: 210 @@ -1966,8 +2070,9 @@ points: 12875 rank: 16 tribe_id: 30 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: http://www.regionalintegrate.info/deliver/impactful/grow/supply-chains + most_points: 12875 - rank_att: 14 score_att: 15191 rank_def: 453 @@ -1983,8 +2088,9 @@ points: 12658 rank: 18 tribe_id: 30 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.leadvalue-added.name/synergize/platforms + most_points: 12658 - rank_att: 29 score_att: 6475 rank_def: 481 @@ -2000,8 +2106,9 @@ points: 12311 rank: 19 tribe_id: 30 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.internalgenerate.biz/scale/utilize/drive/functionalities + most_points: 12311 - rank_att: 6 score_att: 22879 rank_def: 186 @@ -2017,8 +2124,9 @@ points: 11668 rank: 20 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.productproductize.com/synergize/transform + most_points: 11668 - rank_att: 194 score_att: 225 rank_def: 3 @@ -2034,8 +2142,9 @@ points: 11142 rank: 22 tribe_id: 5 - created_at: 2022-03-02T12:00:01Z + created_at: "2022-03-02T12:00:01Z" profile_url: https://www.nationalrepurpose.org/metrics/networks/facilitate + most_points: 11142 - rank_att: 1 score_att: 32384 rank_def: 185 @@ -2051,8 +2160,9 @@ points: 10628 rank: 25 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.internationaldeploy.com/robust + most_points: 10628 - rank_att: 13 score_att: 15266 rank_def: 571 @@ -2068,8 +2178,9 @@ points: 10602 rank: 26 tribe_id: 30 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.futureproactive.io/robust/global/turn-key + most_points: 10602 - rank_att: 31 score_att: 6272 rank_def: 304 @@ -2085,8 +2196,9 @@ points: 10339 rank: 29 tribe_id: 5 - created_at: 2022-02-22T13:00:09Z + created_at: "2022-02-22T13:00:09Z" profile_url: https://www.leadtechnologies.name/schemas/wireless/platforms + most_points: 10339 - rank_att: 0 score_att: 0 rank_def: 485 @@ -2102,8 +2214,9 @@ points: 9924 rank: 30 tribe_id: 5 - created_at: 2022-02-24T16:00:04Z + created_at: "2022-02-24T16:00:04Z" profile_url: https://www.internationalbrand.info/synergistic/grow/e-enable/supply-chains + most_points: 9924 - rank_att: 36 score_att: 4969 rank_def: 221 @@ -2119,8 +2232,9 @@ points: 9712 rank: 31 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: http://www.centralopen-source.name/front-end/channels/revolutionize/seamless + most_points: 9712 - rank_att: 40 score_att: 4277 rank_def: 195 @@ -2136,8 +2250,9 @@ points: 9631 rank: 32 tribe_id: 1 - created_at: 2022-02-28T23:00:08Z + created_at: "2022-02-28T23:00:08Z" profile_url: https://www.legacycompelling.name/initiatives/incubate/e-commerce/best-of-breed + most_points: 9631 - rank_att: 264 score_att: 50 rank_def: 191 @@ -2153,8 +2268,9 @@ points: 9549 rank: 33 tribe_id: 1 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: https://www.directinnovative.name/solutions + most_points: 9549 - rank_att: 148 score_att: 411 rank_def: 48 @@ -2170,8 +2286,9 @@ points: 9380 rank: 34 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.internalmodels.info/strategize/leverage/24-7 + most_points: 9380 - rank_att: 248 score_att: 77 rank_def: 460 @@ -2187,8 +2304,9 @@ points: 9354 rank: 35 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.chieffacilitate.io/transparent + most_points: 9354 - rank_att: 326 score_att: 8 rank_def: 298 @@ -2204,8 +2322,9 @@ points: 9200 rank: 37 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.corporatepartnerships.io/experiences/open-source + most_points: 9200 - rank_att: 11 score_att: 16657 rank_def: 227 @@ -2221,8 +2340,9 @@ points: 9122 rank: 38 tribe_id: 30 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: https://www.nationalintegrated.name/efficient/enable/extend/mesh + most_points: 9122 - rank_att: 30 score_att: 6328 rank_def: 530 @@ -2238,8 +2358,9 @@ points: 9019 rank: 39 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.legacymarkets.biz/clicks-and-mortar/productize/initiatives/synergies + most_points: 9019 - rank_att: 170 score_att: 275 rank_def: 289 @@ -2255,8 +2376,9 @@ points: 9021 rank: 40 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.seniorfrictionless.info/benchmark/visionary + most_points: 9021 - rank_att: 130 score_att: 573 rank_def: 0 @@ -2272,8 +2394,9 @@ points: 8616 rank: 41 tribe_id: 3 - created_at: 2022-02-22T10:00:02Z + created_at: "2022-02-22T10:00:02Z" profile_url: http://www.internalportals.biz/extend/visionary/mission-critical/transition + most_points: 8616 - rank_att: 257 score_att: 56 rank_def: 207 @@ -2289,8 +2412,9 @@ points: 8276 rank: 44 tribe_id: 3 - created_at: 2022-02-22T10:00:02Z + created_at: "2022-02-22T10:00:02Z" profile_url: http://www.forwardsticky.name/repurpose + most_points: 8276 - rank_att: 0 score_att: 0 rank_def: 258 @@ -2306,8 +2430,9 @@ points: 8239 rank: 45 tribe_id: 30 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: http://www.seniorredefine.net/deploy/productize + most_points: 8239 - rank_att: 82 score_att: 1707 rank_def: 496 @@ -2323,8 +2448,9 @@ points: 8099 rank: 46 tribe_id: 5 - created_at: 2022-02-23T17:00:10Z + created_at: "2022-02-23T17:00:10Z" profile_url: https://www.internationalreintermediate.org/aggregate/compelling/proactive + most_points: 8099 - rank_att: 60 score_att: 2712 rank_def: 500 @@ -2340,8 +2466,9 @@ points: 7885 rank: 47 tribe_id: 31 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: https://www.corporatecompelling.io/infomediaries/impactful/seamless + most_points: 7885 - rank_att: 270 score_att: 45 rank_def: 623 @@ -2357,8 +2484,9 @@ points: 7728 rank: 49 tribe_id: 1 - created_at: 2022-03-02T10:00:10Z + created_at: "2022-03-02T10:00:10Z" profile_url: https://www.regionalbleeding-edge.info/one-to-one/systems/e-commerce + most_points: 7728 - rank_att: 101 score_att: 1179 rank_def: 97 @@ -2374,8 +2502,9 @@ points: 7407 rank: 50 tribe_id: 30 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.internationalincubate.name/implement/deliverables/models/killer + most_points: 7407 - rank_att: 129 score_att: 575 rank_def: 0 @@ -2391,8 +2520,9 @@ points: 7406 rank: 52 tribe_id: 5 - created_at: 2022-02-23T08:00:05Z + created_at: "2022-02-23T08:00:05Z" profile_url: http://www.futureportals.biz/frictionless/wireless + most_points: 7406 - rank_att: 22 score_att: 9875 rank_def: 17 @@ -2408,8 +2538,9 @@ points: 7064 rank: 53 tribe_id: 5 - created_at: 2022-02-24T13:00:11Z + created_at: "2022-02-24T13:00:11Z" profile_url: http://www.directroi.com/harness/dot-com + most_points: 7064 - rank_att: 185 score_att: 235 rank_def: 0 @@ -2425,8 +2556,9 @@ points: 6930 rank: 54 tribe_id: 5 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.humanenable.com/revolutionary/platforms/benchmark + most_points: 6930 - rank_att: 107 score_att: 919 rank_def: 419 @@ -2442,8 +2574,9 @@ points: 6328 rank: 58 tribe_id: 3 - created_at: 2022-02-22T22:00:06Z + created_at: "2022-02-22T22:00:06Z" profile_url: http://www.chiefwireless.io/seize/robust + most_points: 6328 - rank_att: 70 score_att: 2200 rank_def: 0 @@ -2459,8 +2592,9 @@ points: 6308 rank: 59 tribe_id: 5 - created_at: 2022-02-25T12:00:01Z + created_at: "2022-02-25T12:00:01Z" profile_url: http://www.regionalviral.com/enterprise/visionary/target/value-added + most_points: 6308 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2476,8 +2610,9 @@ points: 6205 rank: 60 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.internationaluser-centric.com/platforms + most_points: 6205 - rank_att: 263 score_att: 50 rank_def: 563 @@ -2493,8 +2628,9 @@ points: 6105 rank: 63 tribe_id: 30 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: http://www.internalapplications.com/initiatives/bleeding-edge/innovative + most_points: 6105 - rank_att: 142 score_att: 454 rank_def: 458 @@ -2510,8 +2646,9 @@ points: 6034 rank: 65 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.forwardcollaborative.biz/killer/syndicate/scalable/24-365 + most_points: 6034 - rank_att: 193 score_att: 227 rank_def: 0 @@ -2527,8 +2664,9 @@ points: 5949 rank: 68 tribe_id: 3 - created_at: 2022-02-22T16:00:03Z + created_at: "2022-02-22T16:00:03Z" profile_url: http://www.districtbest-of-breed.biz/webservices/e-services + most_points: 5949 - rank_att: 0 score_att: 0 rank_def: 1 @@ -2544,8 +2682,9 @@ points: 5668 rank: 71 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: http://www.regionalstrategize.biz/disintermediate + most_points: 5668 - rank_att: 317 score_att: 10 rank_def: 0 @@ -2561,8 +2700,9 @@ points: 5659 rank: 73 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.centralvisualize.name/seamless/24-365/enhance/enterprise + most_points: 5659 - rank_att: 208 score_att: 167 rank_def: 0 @@ -2578,8 +2718,9 @@ points: 5371 rank: 76 tribe_id: 3 - created_at: 2022-03-02T13:00:08Z + created_at: "2022-03-02T13:00:08Z" profile_url: http://www.principaltransparent.info/markets + most_points: 5371 - rank_att: 283 score_att: 36 rank_def: 0 @@ -2595,8 +2736,9 @@ points: 5321 rank: 77 tribe_id: 5 - created_at: 2022-02-22T13:00:09Z + created_at: "2022-02-22T13:00:09Z" profile_url: http://www.legacyback-end.com/leading-edge + most_points: 5321 - rank_att: 215 score_att: 141 rank_def: 0 @@ -2612,8 +2754,9 @@ points: 5258 rank: 78 tribe_id: 30 - created_at: 2022-02-22T20:00:05Z + created_at: "2022-02-22T20:00:05Z" profile_url: https://www.principale-business.biz/e-commerce/applications + most_points: 5258 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2629,8 +2772,9 @@ points: 5249 rank: 79 tribe_id: 30 - created_at: 2022-02-27T20:00:09Z + created_at: "2022-02-27T20:00:09Z" profile_url: http://www.productbandwidth.info/matrix + most_points: 5249 - rank_att: 0 score_att: 0 rank_def: 573 @@ -2646,8 +2790,9 @@ points: 5117 rank: 82 tribe_id: 3 - created_at: 2022-02-23T12:00:06Z + created_at: "2022-02-23T12:00:06Z" profile_url: http://www.nationalrepurpose.com/seamless + most_points: 5117 - rank_att: 0 score_att: 0 rank_def: 281 @@ -2663,8 +2808,9 @@ points: 5091 rank: 84 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.directinnovative.org/models + most_points: 5091 - rank_att: 34 score_att: 5213 rank_def: 348 @@ -2680,8 +2826,9 @@ points: 5071 rank: 85 tribe_id: 1 - created_at: 2022-03-01T22:00:11Z + created_at: "2022-03-01T22:00:11Z" profile_url: https://www.customerexploit.net/facilitate + most_points: 5071 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2697,8 +2844,9 @@ points: 5194 rank: 87 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.chiefcross-platform.org/expedite/strategic/streamline/drive + most_points: 5194 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2714,8 +2862,9 @@ points: 4994 rank: 88 tribe_id: 30 - created_at: 2022-02-25T16:00:01Z + created_at: "2022-02-25T16:00:01Z" profile_url: http://www.legacyintegrate.name/magnetic/scale + most_points: 4994 - rank_att: 0 score_att: 0 rank_def: 242 @@ -2731,8 +2880,9 @@ points: 4944 rank: 90 tribe_id: 5 - created_at: 2022-02-22T08:00:06Z + created_at: "2022-02-22T08:00:06Z" profile_url: https://www.leadmaximize.com/incentivize/impactful/b2b + most_points: 4944 - rank_att: 46 score_att: 3700 rank_def: 0 @@ -2748,8 +2898,9 @@ points: 4916 rank: 91 tribe_id: 30 - created_at: 2022-03-10T12:00:03Z + created_at: "2022-03-10T12:00:03Z" profile_url: https://www.regionalkiller.net/e-markets + most_points: 4916 - rank_att: 135 score_att: 516 rank_def: 36 @@ -2765,8 +2916,9 @@ points: 4890 rank: 92 tribe_id: 1 - created_at: 2022-02-21T21:00:09Z + created_at: "2022-02-21T21:00:09Z" profile_url: https://www.directsticky.name/end-to-end + most_points: 4890 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2782,8 +2934,9 @@ points: 4873 rank: 93 tribe_id: 1 - created_at: 2022-02-22T21:00:11Z + created_at: "2022-02-22T21:00:11Z" profile_url: https://www.futureinnovative.io/recontextualize/turn-key/methodologies + most_points: 4873 - rank_att: 0 score_att: 0 rank_def: 151 @@ -2799,8 +2952,9 @@ points: 4862 rank: 94 tribe_id: 30 - created_at: 2022-02-24T14:00:02Z + created_at: "2022-02-24T14:00:02Z" profile_url: https://www.futuresupply-chains.name/efficient/dot-com/robust + most_points: 4862 - rank_att: 0 score_att: 0 rank_def: 456 @@ -2816,8 +2970,9 @@ points: 4833 rank: 95 tribe_id: 30 - created_at: 2022-02-22T21:00:11Z + created_at: "2022-02-22T21:00:11Z" profile_url: https://www.internalengineer.io/networks/relationships + most_points: 4833 - rank_att: 104 score_att: 1054 rank_def: 197 @@ -2833,8 +2988,9 @@ points: 4821 rank: 96 tribe_id: 5 - created_at: 2022-02-24T16:00:04Z + created_at: "2022-02-24T16:00:04Z" profile_url: https://www.internalengage.net/plug-and-play + most_points: 4821 - rank_att: 301 score_att: 19 rank_def: 203 @@ -2850,8 +3006,9 @@ points: 4629 rank: 106 tribe_id: 3 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: http://www.futuree-services.biz/supply-chains/supply-chains + most_points: 4629 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2867,8 +3024,9 @@ points: 4526 rank: 107 tribe_id: 30 - created_at: 2022-02-24T16:00:04Z + created_at: "2022-02-24T16:00:04Z" profile_url: https://www.productmetrics.info/architect/synthesize/productize + most_points: 4526 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2884,8 +3042,9 @@ points: 4438 rank: 109 tribe_id: 5 - created_at: 2022-03-02T10:00:10Z + created_at: "2022-03-02T10:00:10Z" profile_url: http://www.dynamicmarkets.org/cultivate/networks/deliverables/dot-com + most_points: 4438 - rank_att: 114 score_att: 813 rank_def: 497 @@ -2901,8 +3060,9 @@ points: 4399 rank: 111 tribe_id: 30 - created_at: 2022-02-24T15:00:09Z + created_at: "2022-02-24T15:00:09Z" profile_url: https://www.investorfacilitate.com/web-readiness/e-business/orchestrate/cultivate + most_points: 4399 - rank_att: 327 score_att: 8 rank_def: 309 @@ -2918,8 +3078,9 @@ points: 4304 rank: 115 tribe_id: 5 - created_at: 2022-02-22T20:00:05Z + created_at: "2022-02-22T20:00:05Z" profile_url: https://www.corporaterobust.info/architect + most_points: 4304 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2935,8 +3096,9 @@ points: 4219 rank: 118 tribe_id: 30 - created_at: 2022-02-22T17:00:08Z + created_at: "2022-02-22T17:00:08Z" profile_url: https://www.futuree-tailers.com/experiences/action-items/platforms + most_points: 4219 - rank_att: 267 score_att: 46 rank_def: 0 @@ -2952,8 +3114,9 @@ points: 4107 rank: 125 tribe_id: 30 - created_at: 2022-02-24T20:00:07Z + created_at: "2022-02-24T20:00:07Z" profile_url: https://www.internalrelationships.net/incubate/collaborative/b2c/killer + most_points: 4107 - rank_att: 0 score_att: 0 rank_def: 0 @@ -2969,8 +3132,9 @@ points: 3814 rank: 133 tribe_id: 31 - created_at: 2022-02-22T13:00:09Z + created_at: "2022-02-22T13:00:09Z" profile_url: https://www.centralplug-and-play.io/reintermediate/transition/efficient/empower + most_points: 3814 - rank_att: 0 score_att: 0 rank_def: 340 @@ -2986,8 +3150,9 @@ points: 3790 rank: 135 tribe_id: 1 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: http://www.internalsynthesize.com/strategic/seize/ubiquitous + most_points: 3790 - rank_att: 10 score_att: 17745 rank_def: 0 @@ -3003,8 +3168,9 @@ points: 3752 rank: 137 tribe_id: 3 - created_at: 2022-02-21T21:00:09Z + created_at: "2022-02-21T21:00:09Z" profile_url: http://www.customersticky.biz/iterate/24-365/global + most_points: 3752 - rank_att: 0 score_att: 0 rank_def: 188 @@ -3020,8 +3186,9 @@ points: 3559 rank: 145 tribe_id: 31 - created_at: 2022-02-21T21:00:09Z + created_at: "2022-02-21T21:00:09Z" profile_url: http://www.dynamicstreamline.net/revolutionary/drive + most_points: 3559 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3037,8 +3204,9 @@ points: 3499 rank: 147 tribe_id: 5 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: https://www.centralubiquitous.org/revolutionary + most_points: 3499 - rank_att: 299 score_att: 20 rank_def: 642 @@ -3054,8 +3222,9 @@ points: 3475 rank: 150 tribe_id: 30 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: http://www.districtpartnerships.io/monetize + most_points: 3475 - rank_att: 87 score_att: 1533 rank_def: 0 @@ -3071,8 +3240,9 @@ points: 3314 rank: 157 tribe_id: 3 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: http://www.productenhance.info/iterate/markets/maximize/next-generation + most_points: 3314 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3088,8 +3258,9 @@ points: 3303 rank: 159 tribe_id: 30 - created_at: 2022-02-28T20:00:06Z + created_at: "2022-02-28T20:00:06Z" profile_url: http://www.futureportals.name/enable/infomediaries + most_points: 3303 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3105,8 +3276,9 @@ points: 3213 rank: 167 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.nationalvisualize.io/revolutionize + most_points: 3213 - rank_att: 239 score_att: 90 rank_def: 0 @@ -3122,8 +3294,9 @@ points: 2932 rank: 187 tribe_id: 30 - created_at: 2022-02-27T08:00:08Z + created_at: "2022-02-27T08:00:08Z" profile_url: http://www.principalkiller.net/b2b/magnetic + most_points: 2932 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3139,8 +3312,9 @@ points: 2907 rank: 189 tribe_id: 1 - created_at: 2022-02-22T15:00:10Z + created_at: "2022-02-22T15:00:10Z" profile_url: https://www.corporatemindshare.io/syndicate/killer/initiatives + most_points: 2907 - rank_att: 92 score_att: 1354 rank_def: 71 @@ -3156,8 +3330,9 @@ points: 2902 rank: 190 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.forwardsystems.info/vortals + most_points: 2902 - rank_att: 166 score_att: 284 rank_def: 2 @@ -3173,8 +3348,9 @@ points: 2854 rank: 196 tribe_id: 31 - created_at: 2022-02-24T18:00:06Z + created_at: "2022-02-24T18:00:06Z" profile_url: http://www.nationalrobust.io/end-to-end/empower/interactive + most_points: 2854 - rank_att: 182 score_att: 252 rank_def: 477 @@ -3190,8 +3366,9 @@ points: 2785 rank: 206 tribe_id: 31 - created_at: 2022-02-26T07:00:10Z + created_at: "2022-02-26T07:00:10Z" profile_url: https://www.corporateunleash.io/infrastructures/engage/productize + most_points: 2785 - rank_att: 51 score_att: 3281 rank_def: 615 @@ -3207,8 +3384,9 @@ points: 2780 rank: 208 tribe_id: 5 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: http://www.seniorcommunities.net/plug-and-play/proactive/seamless/expedite + most_points: 2780 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3224,8 +3402,9 @@ points: 2706 rank: 214 tribe_id: 31 - created_at: 2022-02-27T21:00:09Z + created_at: "2022-02-27T21:00:09Z" profile_url: https://www.corporateimpactful.org/metrics/models + most_points: 2706 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3241,8 +3420,9 @@ points: 2671 rank: 220 tribe_id: 1 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: https://www.internalengage.org/mindshare + most_points: 2671 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3258,8 +3438,9 @@ points: 2655 rank: 223 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.seniordrive.biz/killer/evolve/vortals + most_points: 2655 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3275,8 +3456,9 @@ points: 2624 rank: 232 tribe_id: 5 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: https://www.humanone-to-one.net/systems/interfaces + most_points: 2624 - rank_att: 81 score_att: 1733 rank_def: 0 @@ -3292,8 +3474,9 @@ points: 2600 rank: 235 tribe_id: 30 - created_at: 2022-02-23T12:00:06Z + created_at: "2022-02-23T12:00:06Z" profile_url: https://www.dynamicscalable.biz/one-to-one/sexy/eyeballs/streamline + most_points: 2600 - rank_att: 260 score_att: 54 rank_def: 0 @@ -3309,8 +3492,9 @@ points: 2454 rank: 256 tribe_id: 3 - created_at: 2022-02-21T22:00:08Z + created_at: "2022-02-21T22:00:08Z" profile_url: http://www.legacyintegrated.io/bleeding-edge/24-7 + most_points: 2454 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3326,8 +3510,9 @@ points: 2432 rank: 261 tribe_id: 5 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.chiefexploit.io/world-class + most_points: 2432 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3343,8 +3528,9 @@ points: 2402 rank: 266 tribe_id: 31 - created_at: 2022-02-25T16:00:01Z + created_at: "2022-02-25T16:00:01Z" profile_url: https://www.leadintuitive.info/repurpose/generate/syndicate + most_points: 2402 - rank_att: 0 score_att: 0 rank_def: 663 @@ -3360,8 +3546,9 @@ points: 2376 rank: 268 tribe_id: 31 - created_at: 2022-03-02T10:00:10Z + created_at: "2022-03-02T10:00:10Z" profile_url: http://www.principale-commerce.org/viral/matrix/methodologies + most_points: 2376 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3377,8 +3564,9 @@ points: 2240 rank: 288 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.legacymorph.com/reintermediate + most_points: 2240 - rank_att: 276 score_att: 42 rank_def: 0 @@ -3394,8 +3582,9 @@ points: 2221 rank: 292 tribe_id: 31 - created_at: 2022-02-24T08:00:07Z + created_at: "2022-02-24T08:00:07Z" profile_url: http://www.corporateimplement.biz/clicks-and-mortar/reinvent/whiteboard + most_points: 2221 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3411,8 +3600,9 @@ points: 2174 rank: 300 tribe_id: 5 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: http://www.centralplatforms.net/cultivate/bandwidth/one-to-one/convergence + most_points: 2174 - rank_att: 227 score_att: 114 rank_def: 0 @@ -3428,8 +3618,9 @@ points: 2139 rank: 307 tribe_id: 1 - created_at: 2022-02-21T23:00:07Z + created_at: "2022-02-21T23:00:07Z" profile_url: http://www.productvalue-added.org/morph + most_points: 2139 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3445,8 +3636,9 @@ points: 2118 rank: 311 tribe_id: 1 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: http://www.futuretransform.net/metrics + most_points: 2118 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3462,8 +3654,9 @@ points: 2096 rank: 317 tribe_id: 31 - created_at: 2022-02-26T19:00:10Z + created_at: "2022-02-26T19:00:10Z" profile_url: http://www.legacyembrace.info/synthesize/brand/killer + most_points: 2096 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3479,8 +3672,9 @@ points: 2091 rank: 319 tribe_id: 3 - created_at: 2022-02-21T20:00:07Z + created_at: "2022-02-21T20:00:07Z" profile_url: https://www.directutilize.org/seize/reinvent/dynamic/channels + most_points: 2091 - rank_att: 186 score_att: 233 rank_def: 661 @@ -3496,8 +3690,9 @@ points: 2015 rank: 337 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.chiefdeploy.org/impactful/drive + most_points: 2015 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3513,8 +3708,9 @@ points: 1950 rank: 363 tribe_id: 31 - created_at: 2022-02-24T22:00:06Z + created_at: "2022-02-24T22:00:06Z" profile_url: https://www.internationalsticky.io/architect/granular/models/strategize + most_points: 1950 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3530,8 +3726,9 @@ points: 1946 rank: 366 tribe_id: 31 - created_at: 2022-03-01T18:00:08Z + created_at: "2022-03-01T18:00:08Z" profile_url: https://www.globalempower.info/mesh + most_points: 1946 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3547,8 +3744,9 @@ points: 1930 rank: 369 tribe_id: 1 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: https://www.nationalvirtual.net/b2c + most_points: 1930 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3564,8 +3762,9 @@ points: 1935 rank: 370 tribe_id: 1 - created_at: 2022-02-21T21:00:09Z + created_at: "2022-02-21T21:00:09Z" profile_url: https://www.human24-365.org/scalable + most_points: 1935 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3581,8 +3780,9 @@ points: 1860 rank: 389 tribe_id: 31 - created_at: 2022-02-27T14:00:04Z + created_at: "2022-02-27T14:00:04Z" profile_url: https://www.districtback-end.biz/orchestrate/innovative/interfaces + most_points: 1860 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3598,8 +3798,9 @@ points: 1855 rank: 391 tribe_id: 31 - created_at: 2022-02-21T23:00:07Z + created_at: "2022-02-21T23:00:07Z" profile_url: https://www.internationalcross-media.io/applications/redefine/paradigms/best-of-breed + most_points: 1855 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3615,8 +3816,9 @@ points: 1759 rank: 421 tribe_id: 1 - created_at: 2022-03-02T12:00:01Z + created_at: "2022-03-02T12:00:01Z" profile_url: https://www.humanenhance.com/extend + most_points: 1759 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3632,8 +3834,9 @@ points: 1739 rank: 427 tribe_id: 1 - created_at: 2022-02-23T17:00:10Z + created_at: "2022-02-23T17:00:10Z" profile_url: https://www.productcompelling.info/value-added + most_points: 1739 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3649,8 +3852,9 @@ points: 1560 rank: 503 tribe_id: 3 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.dynamictransition.biz/revolutionary/whiteboard + most_points: 1560 - rank_att: 0 score_att: 0 rank_def: 329 @@ -3666,8 +3870,9 @@ points: 1534 rank: 515 tribe_id: 31 - created_at: 2022-02-22T12:00:08Z + created_at: "2022-02-22T12:00:08Z" profile_url: https://www.nationalone-to-one.info/repurpose/end-to-end/supply-chains/whiteboard + most_points: 1534 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3683,8 +3888,9 @@ points: 1509 rank: 525 tribe_id: 31 - created_at: 2022-02-24T22:00:06Z + created_at: "2022-02-24T22:00:06Z" profile_url: http://www.nationalsticky.biz/utilize/communities/grow/sexy + most_points: 1509 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3700,8 +3906,9 @@ points: 1385 rank: 588 tribe_id: 31 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.legacybandwidth.io/e-enable/transform/communities/leverage + most_points: 1385 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3717,8 +3924,9 @@ points: 1382 rank: 595 tribe_id: 1 - created_at: 2022-03-01T12:00:08Z + created_at: "2022-03-01T12:00:08Z" profile_url: http://www.principaldistributed.io/infomediaries/b2c/solutions + most_points: 1382 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3734,8 +3942,9 @@ points: 1226 rank: 665 tribe_id: 31 - created_at: 2022-02-24T13:00:11Z + created_at: "2022-02-24T13:00:11Z" profile_url: https://www.chieftransparent.org/brand/interfaces + most_points: 1226 - rank_att: 0 score_att: 0 rank_def: 0 @@ -3751,8 +3960,9 @@ points: 1202 rank: 679 tribe_id: 31 - created_at: 2022-02-21T19:00:08Z + created_at: "2022-02-21T19:00:08Z" profile_url: https://www.chiefe-services.net/leading-edge + most_points: 1202 - rank_att: 228 score_att: 108 rank_def: 0 @@ -3768,8 +3978,9 @@ points: 1094 rank: 728 tribe_id: 31 - created_at: 2022-02-22T18:00:06Z + created_at: "2022-02-22T18:00:06Z" profile_url: https://www.districtreinvent.net/reinvent/systems + most_points: 1094 - rank_att: 0 score_att: 0 rank_def: 678 @@ -3785,8 +3996,9 @@ points: 810 rank: 893 tribe_id: 3 - created_at: 2022-02-23T21:00:10Z + created_at: "2022-02-23T21:00:10Z" profile_url: https://www.dynamicsynergize.info/synthesize + most_points: 810 - rank_att: 121 score_att: 694 rank_def: 49 @@ -3802,8 +4014,9 @@ points: 596 rank: 1024 tribe_id: 30 - created_at: 2022-03-01T15:00:08Z + created_at: "2022-03-01T15:00:08Z" profile_url: http://www.internationalinitiatives.name/systems + most_points: 596 - rank_att: 0 score_att: 0 rank_def: 5 @@ -3819,8 +4032,9 @@ points: 482 rank: 1125 tribe_id: 30 - created_at: 2022-02-21T18:00:10Z + created_at: "2022-02-21T18:00:10Z" profile_url: http://www.leadrepurpose.biz/evolve/end-to-end/b2b + most_points: 482 - rank_att: 5 score_att: 38213157 rank_def: 2 @@ -3836,8 +4050,9 @@ points: 7298055 rank: 1 tribe_id: 27 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: https://www.chiefmesh.info/sexy + most_points: 7298055 - rank_att: 13 score_att: 23124653 rank_def: 112 @@ -3853,8 +4068,9 @@ points: 6292398 rank: 2 tribe_id: 2 - created_at: 2021-09-08T20:01:11Z + created_at: "2021-09-08T20:01:11Z" profile_url: https://www.corporatemarkets.net/bandwidth/e-enable/value-added/granular + most_points: 6292398 - rank_att: 4 score_att: 41520479 rank_def: 64 @@ -3870,8 +4086,9 @@ points: 5800404 rank: 3 tribe_id: 27 - created_at: 2021-09-04T15:01:18Z + created_at: "2021-09-04T15:01:18Z" profile_url: http://www.humancontent.org/deliver/recontextualize/action-items + most_points: 5800404 - rank_att: 3 score_att: 45122465 rank_def: 55 @@ -3887,8 +4104,9 @@ points: 5763174 rank: 4 tribe_id: 28 - created_at: 2021-09-02T23:01:13Z + created_at: "2021-09-02T23:01:13Z" profile_url: https://www.productsolutions.com/seamless/e-services/24-365 + most_points: 5763174 - rank_att: 12 score_att: 24408591 rank_def: 153 @@ -3904,8 +4122,9 @@ points: 5225098 rank: 5 tribe_id: 27 - created_at: 2021-09-16T23:00:54Z + created_at: "2021-09-16T23:00:54Z" profile_url: http://www.nationalpartnerships.com/front-end/reinvent/mesh + most_points: 5225098 - rank_att: 26 score_att: 15992358 rank_def: 51 @@ -3921,8 +4140,9 @@ points: 5091810 rank: 6 tribe_id: 2 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: https://www.futureweb-enabled.info/seize/24-365/grow + most_points: 5091810 - rank_att: 2 score_att: 45411371 rank_def: 175 @@ -3938,8 +4158,9 @@ points: 5020701 rank: 7 tribe_id: 27 - created_at: 2021-09-06T14:00:53Z + created_at: "2021-09-06T14:00:53Z" profile_url: https://www.futureplatforms.org/back-end/mission-critical/unleash/implement + most_points: 5020701 - rank_att: 7 score_att: 28659400 rank_def: 77 @@ -3955,8 +4176,9 @@ points: 5015401 rank: 8 tribe_id: 28 - created_at: 2021-09-08T11:01:09Z + created_at: "2021-09-08T11:01:09Z" profile_url: https://www.districtsolutions.com/e-business/maximize/synthesize/convergence + most_points: 5015401 - rank_att: 1 score_att: 50470345 rank_def: 67 @@ -3972,8 +4194,9 @@ points: 4865171 rank: 9 tribe_id: 28 - created_at: 2021-09-02T23:01:13Z + created_at: "2021-09-02T23:01:13Z" profile_url: http://www.forwardutilize.name/embrace/markets/architect/one-to-one + most_points: 4865171 - rank_att: 30 score_att: 14418054 rank_def: 33 @@ -3989,8 +4212,9 @@ points: 4427826 rank: 10 tribe_id: 28 - created_at: 2021-09-05T23:01:02Z + created_at: "2021-09-05T23:01:02Z" profile_url: https://www.directholistic.biz/disintermediate + most_points: 4427826 - rank_att: 20 score_att: 18178345 rank_def: 198 @@ -4006,8 +4230,9 @@ points: 4289852 rank: 11 tribe_id: 28 - created_at: 2021-09-15T08:01:13Z + created_at: "2021-09-15T08:01:13Z" profile_url: https://www.humandeliver.biz/front-end/eyeballs/visionary + most_points: 4289852 - rank_att: 6 score_att: 30513732 rank_def: 36 @@ -4023,8 +4248,9 @@ points: 4176778 rank: 12 tribe_id: 28 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: http://www.directcustomized.biz/iterate/aggregate/convergence + most_points: 4176778 - rank_att: 25 score_att: 16186476 rank_def: 14 @@ -4040,8 +4266,9 @@ points: 4066267 rank: 13 tribe_id: 28 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: https://www.leadcutting-edge.name/24-365/users/platforms + most_points: 4066267 - rank_att: 184 score_att: 3617056 rank_def: 253 @@ -4057,8 +4284,9 @@ points: 3945400 rank: 14 tribe_id: 27 - created_at: 2021-09-05T13:01:06Z + created_at: "2021-09-05T13:01:06Z" profile_url: https://www.chiefinitiatives.org/applications/benchmark/action-items/enterprise + most_points: 3945400 - rank_att: 8 score_att: 28069010 rank_def: 76 @@ -4074,8 +4302,9 @@ points: 3923741 rank: 15 tribe_id: 28 - created_at: 2021-09-06T10:00:55Z + created_at: "2021-09-06T10:00:55Z" profile_url: https://www.regionalmindshare.name/infomediaries/matrix/reintermediate + most_points: 3923741 - rank_att: 14 score_att: 22622696 rank_def: 109 @@ -4091,8 +4320,9 @@ points: 3886905 rank: 16 tribe_id: 28 - created_at: 2021-09-02T23:01:13Z + created_at: "2021-09-02T23:01:13Z" profile_url: http://www.forwardrecontextualize.net/models + most_points: 3886905 - rank_att: 10 score_att: 26740200 rank_def: 75 @@ -4108,8 +4338,9 @@ points: 3670115 rank: 17 tribe_id: 2 - created_at: 2021-09-21T19:01:08Z + created_at: "2021-09-21T19:01:08Z" profile_url: https://www.forwardevolve.io/incubate + most_points: 3670115 - rank_att: 45 score_att: 11478083 rank_def: 99 @@ -4125,8 +4356,9 @@ points: 3664235 rank: 18 tribe_id: 2 - created_at: 2021-09-02T18:01:08Z + created_at: "2021-09-02T18:01:08Z" profile_url: http://www.regionalreal-time.com/bleeding-edge/cross-platform + most_points: 3664235 - rank_att: 11 score_att: 24697368 rank_def: 74 @@ -4142,8 +4374,9 @@ points: 3646744 rank: 19 tribe_id: 27 - created_at: 2021-09-04T18:01:01Z + created_at: "2021-09-04T18:01:01Z" profile_url: https://www.customernetworks.net/productize/syndicate/strategize + most_points: 3646744 - rank_att: 17 score_att: 20015514 rank_def: 221 @@ -4159,8 +4392,9 @@ points: 3490102 rank: 20 tribe_id: 2 - created_at: 2021-09-18T09:00:56Z + created_at: "2021-09-18T09:00:56Z" profile_url: https://www.futuree-enable.name/revolutionize/visionary/scale/seamless + most_points: 3490102 - rank_att: 28 score_att: 15377024 rank_def: 84 @@ -4176,8 +4410,9 @@ points: 3488262 rank: 21 tribe_id: 28 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: https://www.productvisionary.name/integrate + most_points: 3488262 - rank_att: 21 score_att: 17745150 rank_def: 46 @@ -4193,8 +4428,9 @@ points: 3449908 rank: 22 tribe_id: 2 - created_at: 2021-09-04T16:00:52Z + created_at: "2021-09-04T16:00:52Z" profile_url: https://www.corporate24-365.biz/out-of-the-box + most_points: 3449908 - rank_att: 16 score_att: 20711344 rank_def: 69 @@ -4210,8 +4446,9 @@ points: 3395812 rank: 23 tribe_id: 2 - created_at: 2021-09-03T16:01:02Z + created_at: "2021-09-03T16:01:02Z" profile_url: https://www.chiefinnovate.name/integrated/24-365/applications + most_points: 3395812 - rank_att: 23 score_att: 17516132 rank_def: 53 @@ -4227,8 +4464,9 @@ points: 3365970 rank: 25 tribe_id: 2 - created_at: 2021-09-03T04:01:08Z + created_at: "2021-09-03T04:01:08Z" profile_url: http://www.legacyplug-and-play.biz/channels + most_points: 3365970 - rank_att: 59 score_att: 9984179 rank_def: 189 @@ -4244,8 +4482,9 @@ points: 3327315 rank: 26 tribe_id: 28 - created_at: 2021-09-08T23:01:10Z + created_at: "2021-09-08T23:01:10Z" profile_url: https://www.directtransform.name/systems/niches/portals/orchestrate + most_points: 3327315 - rank_att: 41 score_att: 11776916 rank_def: 160 @@ -4261,8 +4500,9 @@ points: 3245020 rank: 27 tribe_id: 2 - created_at: 2021-09-08T07:00:56Z + created_at: "2021-09-08T07:00:56Z" profile_url: http://www.nationalseamless.name/compelling/target/applications + most_points: 3245020 - rank_att: 90 score_att: 7365720 rank_def: 173 @@ -4278,8 +4518,9 @@ points: 3169124 rank: 28 tribe_id: 28 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: http://www.human24-7.biz/exploit/target + most_points: 3169124 - rank_att: 34 score_att: 12659615 rank_def: 37 @@ -4295,8 +4536,9 @@ points: 3153337 rank: 29 tribe_id: 2 - created_at: 2021-09-02T20:00:41Z + created_at: "2021-09-02T20:00:41Z" profile_url: http://www.internationale-services.org/implement + most_points: 3153337 - rank_att: 53 score_att: 10505715 rank_def: 162 @@ -4312,8 +4554,9 @@ points: 3139702 rank: 30 tribe_id: 2 - created_at: 2021-09-17T14:01:06Z + created_at: "2021-09-17T14:01:06Z" profile_url: https://www.directreintermediate.org/systems/incentivize/eyeballs/technologies + most_points: 3139702 - rank_att: 27 score_att: 15494779 rank_def: 200 @@ -4329,8 +4572,9 @@ points: 3123682 rank: 31 tribe_id: 28 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: https://www.dynamicmission-critical.com/monetize/expedite/generate + most_points: 3123682 - rank_att: 48 score_att: 11099498 rank_def: 145 @@ -4346,8 +4590,9 @@ points: 3088801 rank: 32 tribe_id: 28 - created_at: 2021-09-09T15:01:07Z + created_at: "2021-09-09T15:01:07Z" profile_url: http://www.legacyintegrate.net/b2b/monetize/brand + most_points: 3088801 - rank_att: 46 score_att: 11253371 rank_def: 190 @@ -4363,8 +4608,9 @@ points: 3074325 rank: 33 tribe_id: 28 - created_at: 2021-09-07T20:00:57Z + created_at: "2021-09-07T20:00:57Z" profile_url: https://www.legacyaggregate.name/paradigms/global/communities/systems + most_points: 3074325 - rank_att: 71 score_att: 8808437 rank_def: 357 @@ -4380,8 +4626,9 @@ points: 3064296 rank: 34 tribe_id: 28 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: http://www.customerfunctionalities.org/extend/benchmark/best-of-breed/real-time + most_points: 3064296 - rank_att: 72 score_att: 8759698 rank_def: 361 @@ -4397,8 +4644,9 @@ points: 3017347 rank: 35 tribe_id: 27 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: https://www.legacyuser-centric.com/rich/frictionless/leverage + most_points: 3017347 - rank_att: 49 score_att: 10949751 rank_def: 107 @@ -4414,8 +4662,9 @@ points: 2964624 rank: 36 tribe_id: 27 - created_at: 2021-09-08T11:01:09Z + created_at: "2021-09-08T11:01:09Z" profile_url: https://www.forwardoptimize.biz/integrated + most_points: 2964624 - rank_att: 117 score_att: 5974016 rank_def: 260 @@ -4431,8 +4680,9 @@ points: 2953426 rank: 37 tribe_id: 28 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: http://www.forwardmagnetic.io/scalable + most_points: 2953426 - rank_att: 61 score_att: 9572967 rank_def: 248 @@ -4448,8 +4698,9 @@ points: 2961589 rank: 38 tribe_id: 2 - created_at: 2021-09-04T20:00:59Z + created_at: "2021-09-04T20:00:59Z" profile_url: https://www.productarchitect.com/back-end/e-enable + most_points: 2961589 - rank_att: 75 score_att: 8615717 rank_def: 271 @@ -4465,8 +4716,9 @@ points: 2932284 rank: 39 tribe_id: 28 - created_at: 2021-09-17T11:00:56Z + created_at: "2021-09-17T11:00:56Z" profile_url: https://www.dynamicutilize.com/paradigms + most_points: 2932284 - rank_att: 78 score_att: 8307266 rank_def: 73 @@ -4482,8 +4734,9 @@ points: 2847379 rank: 40 tribe_id: 2 - created_at: 2021-10-10T07:00:56Z + created_at: "2021-10-10T07:00:56Z" profile_url: https://www.futurecompelling.biz/utilize/generate/metrics/interactive + most_points: 2847379 - rank_att: 96 score_att: 6896050 rank_def: 280 @@ -4499,8 +4752,9 @@ points: 2845687 rank: 41 tribe_id: 27 - created_at: 2021-09-13T20:01:12Z + created_at: "2021-09-13T20:01:12Z" profile_url: https://www.dynamicvisualize.org/mindshare/recontextualize + most_points: 2845687 - rank_att: 94 score_att: 7140798 rank_def: 323 @@ -4516,8 +4770,9 @@ points: 2841597 rank: 42 tribe_id: 27 - created_at: 2021-09-06T20:01:11Z + created_at: "2021-09-06T20:01:11Z" profile_url: https://www.forwardutilize.info/visionary/partnerships/harness/streamline + most_points: 2841597 - rank_att: 99 score_att: 6746116 rank_def: 466 @@ -4533,8 +4788,9 @@ points: 2814452 rank: 43 tribe_id: 28 - created_at: 2021-09-07T20:00:57Z + created_at: "2021-09-07T20:00:57Z" profile_url: http://www.districtdrive.org/impactful/whiteboard/benchmark + most_points: 2814452 - rank_att: 29 score_att: 14916881 rank_def: 105 @@ -4550,8 +4806,9 @@ points: 2755427 rank: 44 tribe_id: 27 - created_at: 2021-09-22T23:01:04Z + created_at: "2021-09-22T23:01:04Z" profile_url: https://www.dynamicplatforms.io/user-centric/engage/metrics + most_points: 2755427 - rank_att: 79 score_att: 8228366 rank_def: 242 @@ -4567,8 +4824,9 @@ points: 2745538 rank: 45 tribe_id: 2 - created_at: 2021-09-03T11:01:05Z + created_at: "2021-09-03T11:01:05Z" profile_url: https://www.nationalseize.biz/holistic/applications/facilitate/embrace + most_points: 2745538 - rank_att: 110 score_att: 6241797 rank_def: 220 @@ -4584,8 +4842,9 @@ points: 2725295 rank: 46 tribe_id: 28 - created_at: 2021-09-08T17:01:03Z + created_at: "2021-09-08T17:01:03Z" profile_url: https://www.districtsynergistic.org/architect/e-business + most_points: 2725295 - rank_att: 15 score_att: 21852306 rank_def: 316 @@ -4601,8 +4860,9 @@ points: 2675924 rank: 47 tribe_id: 28 - created_at: 2021-09-13T18:01:10Z + created_at: "2021-09-13T18:01:10Z" profile_url: https://www.internaldeliver.io/solutions/revolutionize/applications + most_points: 2675924 - rank_att: 9 score_att: 26795962 rank_def: 236 @@ -4618,8 +4878,9 @@ points: 2604285 rank: 48 tribe_id: 27 - created_at: 2021-09-04T18:01:01Z + created_at: "2021-09-04T18:01:01Z" profile_url: https://www.investorgrow.name/paradigms/holistic + most_points: 2604285 - rank_att: 47 score_att: 11123250 rank_def: 119 @@ -4635,8 +4896,9 @@ points: 2542323 rank: 49 tribe_id: 27 - created_at: 2021-09-03T13:01:02Z + created_at: "2021-09-03T13:01:02Z" profile_url: http://www.districte-business.biz/cutting-edge/e-enable/leading-edge + most_points: 2542323 - rank_att: 32 score_att: 13698775 rank_def: 469 @@ -4652,8 +4914,9 @@ points: 2526824 rank: 50 tribe_id: 28 - created_at: 2021-09-06T19:01:01Z + created_at: "2021-09-06T19:01:01Z" profile_url: http://www.leadcutting-edge.com/schemas/customized/markets + most_points: 2526824 - rank_att: 55 score_att: 10342920 rank_def: 358 @@ -4669,8 +4932,9 @@ points: 2513259 rank: 51 tribe_id: 2 - created_at: 2021-09-08T12:01:04Z + created_at: "2021-09-08T12:01:04Z" profile_url: http://www.internationalextensible.io/orchestrate/e-services/exploit/embrace + most_points: 2513259 - rank_att: 24 score_att: 17213216 rank_def: 492 @@ -4686,8 +4950,9 @@ points: 2492871 rank: 52 tribe_id: 28 - created_at: 2021-09-12T18:01:02Z + created_at: "2021-09-12T18:01:02Z" profile_url: https://www.dynamicend-to-end.biz/optimize/empower + most_points: 2492871 - rank_att: 57 score_att: 10210665 rank_def: 404 @@ -4703,8 +4968,9 @@ points: 2457975 rank: 53 tribe_id: 2 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: http://www.humanexpedite.net/generate/transition + most_points: 2457975 - rank_att: 43 score_att: 11592425 rank_def: 336 @@ -4720,8 +4986,9 @@ points: 2421335 rank: 54 tribe_id: 28 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: https://www.legacyopen-source.biz/plug-and-play/visualize/streamline/e-business + most_points: 2421335 - rank_att: 50 score_att: 10855472 rank_def: 366 @@ -4737,8 +5004,9 @@ points: 2392853 rank: 55 tribe_id: 28 - created_at: 2021-09-13T06:01:16Z + created_at: "2021-09-13T06:01:16Z" profile_url: http://www.globalsynergize.com/scalable + most_points: 2392853 - rank_att: 188 score_att: 3525019 rank_def: 184 @@ -4754,8 +5022,9 @@ points: 2390703 rank: 56 tribe_id: 2 - created_at: 2021-09-09T16:00:56Z + created_at: "2021-09-09T16:00:56Z" profile_url: https://www.dynamice-business.name/innovative/networks + most_points: 2390703 - rank_att: 18 score_att: 19485744 rank_def: 343 @@ -4771,8 +5040,9 @@ points: 2371168 rank: 57 tribe_id: 27 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: https://www.chiefharness.org/engineer + most_points: 2371168 - rank_att: 104 score_att: 6543106 rank_def: 115 @@ -4788,8 +5058,9 @@ points: 2353479 rank: 58 tribe_id: 28 - created_at: 2021-09-05T09:01:22Z + created_at: "2021-09-05T09:01:22Z" profile_url: https://www.humanbrand.name/synthesize + most_points: 2353479 - rank_att: 31 score_att: 14057243 rank_def: 13 @@ -4805,8 +5076,9 @@ points: 2344553 rank: 59 tribe_id: 2 - created_at: 2021-09-08T15:01:08Z + created_at: "2021-09-08T15:01:08Z" profile_url: http://www.nationalarchitect.io/productize/dot-com + most_points: 2344553 - rank_att: 135 score_att: 5329146 rank_def: 708 @@ -4822,8 +5094,9 @@ points: 2328267 rank: 60 tribe_id: 27 - created_at: 2021-09-03T18:00:59Z + created_at: "2021-09-03T18:00:59Z" profile_url: https://www.nationalsexy.info/cross-media/infrastructures/rich + most_points: 2328267 - rank_att: 44 score_att: 11514947 rank_def: 407 @@ -4839,8 +5112,9 @@ points: 2321458 rank: 61 tribe_id: 27 - created_at: 2021-09-03T12:01:05Z + created_at: "2021-09-03T12:01:05Z" profile_url: http://www.chiefmaximize.io/web-readiness/aggregate/e-business/ubiquitous + most_points: 2321458 - rank_att: 80 score_att: 8141698 rank_def: 22 @@ -4856,8 +5130,9 @@ points: 2307593 rank: 62 tribe_id: 27 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: https://www.centralarchitect.net/web-readiness/magnetic + most_points: 2307593 - rank_att: 64 score_att: 9303900 rank_def: 521 @@ -4873,8 +5148,9 @@ points: 2279565 rank: 63 tribe_id: 27 - created_at: 2021-09-07T21:01:03Z + created_at: "2021-09-07T21:01:03Z" profile_url: https://www.legacyvisionary.com/best-of-breed/impactful + most_points: 2279565 - rank_att: 33 score_att: 13436877 rank_def: 277 @@ -4890,8 +5166,9 @@ points: 2274204 rank: 64 tribe_id: 27 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: http://www.directarchitect.biz/web-enabled + most_points: 2274204 - rank_att: 128 score_att: 5478003 rank_def: 285 @@ -4907,8 +5184,9 @@ points: 2237414 rank: 65 tribe_id: 2 - created_at: 2021-09-12T10:01:02Z + created_at: "2021-09-12T10:01:02Z" profile_url: http://www.internationalworld-class.com/reintermediate/vortals + most_points: 2237414 - rank_att: 74 score_att: 8677453 rank_def: 434 @@ -4924,8 +5202,9 @@ points: 2195057 rank: 66 tribe_id: 27 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: https://www.directnext-generation.io/leading-edge/e-markets/deploy/maximize + most_points: 2195057 - rank_att: 37 score_att: 12072955 rank_def: 42 @@ -4941,8 +5220,9 @@ points: 2176850 rank: 67 tribe_id: 2 - created_at: 2021-09-17T00:01:06Z + created_at: "2021-09-17T00:01:06Z" profile_url: http://www.seniorredefine.org/dot-com/facilitate/unleash/e-tailers + most_points: 2176850 - rank_att: 69 score_att: 8858622 rank_def: 81 @@ -4958,8 +5238,9 @@ points: 2174447 rank: 68 tribe_id: 28 - created_at: 2021-09-08T23:01:10Z + created_at: "2021-09-08T23:01:10Z" profile_url: https://www.corporatecustomized.biz/monetize + most_points: 2174447 - rank_att: 42 score_att: 11669868 rank_def: 219 @@ -4975,8 +5256,9 @@ points: 2145397 rank: 69 tribe_id: 2 - created_at: 2021-09-03T15:01:09Z + created_at: "2021-09-03T15:01:09Z" profile_url: https://www.nationalparadigms.net/visualize/e-business/world-class + most_points: 2145397 - rank_att: 52 score_att: 10591724 rank_def: 179 @@ -4992,8 +5274,9 @@ points: 2122258 rank: 70 tribe_id: 28 - created_at: 2021-09-08T20:01:11Z + created_at: "2021-09-08T20:01:11Z" profile_url: https://www.internalweb-readiness.com/systems/proactive/customized/synthesize + most_points: 2122258 - rank_att: 111 score_att: 6208748 rank_def: 86 @@ -5009,8 +5292,9 @@ points: 2120949 rank: 71 tribe_id: 2 - created_at: 2021-09-02T18:01:08Z + created_at: "2021-09-02T18:01:08Z" profile_url: https://www.directexperiences.info/matrix/leverage/niches/supply-chains + most_points: 2120949 - rank_att: 130 score_att: 5407057 rank_def: 391 @@ -5026,8 +5310,9 @@ points: 2112802 rank: 72 tribe_id: 2 - created_at: 2021-09-08T11:01:09Z + created_at: "2021-09-08T11:01:09Z" profile_url: https://www.centralvisionary.biz/revolutionize/incubate + most_points: 2112802 - rank_att: 118 score_att: 5856448 rank_def: 1026 @@ -5043,8 +5328,9 @@ points: 2098892 rank: 73 tribe_id: 2 - created_at: 2021-09-30T21:00:58Z + created_at: "2021-09-30T21:00:58Z" profile_url: http://www.internalinterfaces.com/user-centric/schemas/initiatives/enhance + most_points: 2098892 - rank_att: 138 score_att: 5278097 rank_def: 390 @@ -5060,8 +5346,9 @@ points: 2076223 rank: 74 tribe_id: 2 - created_at: 2021-10-04T18:00:57Z + created_at: "2021-10-04T18:00:57Z" profile_url: https://www.investormesh.com/front-end + most_points: 2076223 - rank_att: 86 score_att: 7665260 rank_def: 154 @@ -5077,8 +5364,9 @@ points: 2067252 rank: 75 tribe_id: 1 - created_at: 2021-09-08T09:01:01Z + created_at: "2021-09-08T09:01:01Z" profile_url: https://www.centralglobal.org/schemas + most_points: 2067252 - rank_att: 120 score_att: 5825501 rank_def: 10 @@ -5094,8 +5382,9 @@ points: 2041229 rank: 76 tribe_id: 1 - created_at: 2021-09-05T13:01:06Z + created_at: "2021-09-05T13:01:06Z" profile_url: http://www.centraldistributed.net/architectures + most_points: 2041229 - rank_att: 108 score_att: 6273817 rank_def: 124 @@ -5111,8 +5400,9 @@ points: 2020474 rank: 77 tribe_id: 2 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: http://www.nationalkiller.net/e-enable + most_points: 2020474 - rank_att: 67 score_att: 9052060 rank_def: 919 @@ -5128,8 +5418,9 @@ points: 2018315 rank: 79 tribe_id: 27 - created_at: 2021-09-28T12:01:11Z + created_at: "2021-09-28T12:01:11Z" profile_url: http://www.legacymatrix.name/sexy/best-of-breed + most_points: 2018315 - rank_att: 255 score_att: 2226770 rank_def: 630 @@ -5145,8 +5436,9 @@ points: 2017692 rank: 80 tribe_id: 28 - created_at: 2021-09-05T09:01:22Z + created_at: "2021-09-05T09:01:22Z" profile_url: http://www.leadeyeballs.io/schemas/architectures/out-of-the-box + most_points: 2017692 - rank_att: 678 score_att: 89470 rank_def: 1222 @@ -5162,8 +5454,9 @@ points: 1934238 rank: 81 tribe_id: 28 - created_at: 2021-09-04T13:01:02Z + created_at: "2021-09-04T13:01:02Z" profile_url: http://www.leadpartnerships.net/synergies/vertical/leverage + most_points: 1934238 - rank_att: 84 score_att: 7934320 rank_def: 457 @@ -5179,8 +5472,9 @@ points: 1895790 rank: 83 tribe_id: 28 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: https://www.investorplatforms.net/vortals + most_points: 1895790 - rank_att: 192 score_att: 3432049 rank_def: 422 @@ -5196,8 +5490,9 @@ points: 1890373 rank: 84 tribe_id: 28 - created_at: 2021-10-17T21:01:05Z + created_at: "2021-10-17T21:01:05Z" profile_url: http://www.dynamicinteractive.net/leverage/holistic/solutions + most_points: 1890373 - rank_att: 73 score_att: 8755192 rank_def: 177 @@ -5213,8 +5508,9 @@ points: 1801685 rank: 86 tribe_id: 2 - created_at: 2021-09-08T12:01:04Z + created_at: "2021-09-08T12:01:04Z" profile_url: http://www.customercontent.biz/e-services/wireless/one-to-one/interactive + most_points: 1801685 - rank_att: 93 score_att: 7223207 rank_def: 125 @@ -5230,8 +5526,9 @@ points: 1778261 rank: 87 tribe_id: 28 - created_at: 2021-09-06T23:01:09Z + created_at: "2021-09-06T23:01:09Z" profile_url: http://www.directplatforms.biz/architectures/next-generation + most_points: 1778261 - rank_att: 271 score_att: 2021564 rank_def: 341 @@ -5247,8 +5544,9 @@ points: 1764219 rank: 88 tribe_id: 1 - created_at: 2021-09-13T13:00:57Z + created_at: "2021-09-13T13:00:57Z" profile_url: https://www.investorredefine.biz/synergize/innovative + most_points: 1764219 - rank_att: 85 score_att: 7880548 rank_def: 662 @@ -5264,8 +5562,9 @@ points: 1741011 rank: 89 tribe_id: 28 - created_at: 2021-09-10T21:01:01Z + created_at: "2021-09-10T21:01:01Z" profile_url: https://www.chiefextend.name/innovate/leverage/envisioneer + most_points: 1741011 - rank_att: 40 score_att: 11826332 rank_def: 235 @@ -5281,8 +5580,9 @@ points: 1739754 rank: 90 tribe_id: 27 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: http://www.seniorexpedite.io/24-365 + most_points: 1739754 - rank_att: 122 score_att: 5785061 rank_def: 350 @@ -5298,8 +5598,9 @@ points: 1730968 rank: 91 tribe_id: 27 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: https://www.regionalsexy.biz/systems/seize/intuitive/impactful + most_points: 1730968 - rank_att: 103 score_att: 6545979 rank_def: 379 @@ -5315,8 +5616,9 @@ points: 1723452 rank: 92 tribe_id: 2 - created_at: 2021-09-17T15:01:05Z + created_at: "2021-09-17T15:01:05Z" profile_url: https://www.internationaldistributed.info/technologies/synergies/webservices + most_points: 1723452 - rank_att: 162 score_att: 4005254 rank_def: 395 @@ -5332,8 +5634,9 @@ points: 1688271 rank: 93 tribe_id: 2 - created_at: 2021-09-02T18:01:08Z + created_at: "2021-09-02T18:01:08Z" profile_url: http://www.nationalkiller.biz/platforms/extend/e-services + most_points: 1688271 - rank_att: 115 score_att: 6053356 rank_def: 48 @@ -5349,8 +5652,9 @@ points: 1684782 rank: 95 tribe_id: 2 - created_at: 2021-09-14T10:00:58Z + created_at: "2021-09-14T10:00:58Z" profile_url: https://www.principaldynamic.org/whiteboard + most_points: 1684782 - rank_att: 142 score_att: 5165851 rank_def: 439 @@ -5366,8 +5670,9 @@ points: 1674357 rank: 96 tribe_id: 28 - created_at: 2021-09-06T14:00:53Z + created_at: "2021-09-06T14:00:53Z" profile_url: http://www.humanseize.org/metrics/impactful/vertical + most_points: 1674357 - rank_att: 68 score_att: 8997769 rank_def: 488 @@ -5383,8 +5688,9 @@ points: 1661909 rank: 97 tribe_id: 28 - created_at: 2021-09-08T21:00:59Z + created_at: "2021-09-08T21:00:59Z" profile_url: http://www.centralplatforms.org/24-7/revolutionary/integrated/recontextualize + most_points: 1661909 - rank_att: 109 score_att: 6260477 rank_def: 312 @@ -5400,8 +5706,9 @@ points: 1607496 rank: 99 tribe_id: 28 - created_at: 2021-09-10T10:00:48Z + created_at: "2021-09-10T10:00:48Z" profile_url: https://www.customerdistributed.net/robust + most_points: 1607496 - rank_att: 60 score_att: 9686672 rank_def: 311 @@ -5417,8 +5724,9 @@ points: 1603950 rank: 100 tribe_id: 2 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: https://www.dynamicb2c.info/rich + most_points: 1603950 - rank_att: 112 score_att: 6172454 rank_def: 276 @@ -5434,8 +5742,9 @@ points: 1591213 rank: 101 tribe_id: 2 - created_at: 2021-09-27T16:01:00Z + created_at: "2021-09-27T16:01:00Z" profile_url: https://www.districtempower.org/benchmark/recontextualize/bandwidth + most_points: 1591213 - rank_att: 132 score_att: 5399810 rank_def: 620 @@ -5451,8 +5760,9 @@ points: 1581464 rank: 102 tribe_id: 28 - created_at: 2021-09-06T14:00:53Z + created_at: "2021-09-06T14:00:53Z" profile_url: http://www.forwardcollaborative.name/generate/incubate/synergistic + most_points: 1581464 - rank_att: 76 score_att: 8490413 rank_def: 456 @@ -5468,8 +5778,9 @@ points: 1580251 rank: 103 tribe_id: 28 - created_at: 2021-09-24T09:01:06Z + created_at: "2021-09-24T09:01:06Z" profile_url: http://www.districtclicks-and-mortar.biz/roi/e-services/bricks-and-clicks/envisioneer + most_points: 1580251 - rank_att: 83 score_att: 7980575 rank_def: 349 @@ -5485,8 +5796,9 @@ points: 1578769 rank: 104 tribe_id: 28 - created_at: 2021-09-08T14:01:10Z + created_at: "2021-09-08T14:01:10Z" profile_url: http://www.districtcustomized.name/e-business/optimize/cutting-edge/syndicate + most_points: 1578769 - rank_att: 160 score_att: 4076191 rank_def: 618 @@ -5502,8 +5814,9 @@ points: 1559585 rank: 105 tribe_id: 28 - created_at: 2021-09-07T12:00:56Z + created_at: "2021-09-07T12:00:56Z" profile_url: https://www.leadempower.org/metrics/reinvent + most_points: 1559585 - rank_att: 141 score_att: 5204601 rank_def: 575 @@ -5519,8 +5832,9 @@ points: 1559092 rank: 106 tribe_id: 28 - created_at: 2021-09-09T11:01:06Z + created_at: "2021-09-09T11:01:06Z" profile_url: http://www.globalb2c.name/technologies/scale/metrics/communities + most_points: 1559092 - rank_att: 114 score_att: 6064326 rank_def: 1257 @@ -5536,8 +5850,9 @@ points: 1558364 rank: 107 tribe_id: 27 - created_at: 2021-10-17T21:01:05Z + created_at: "2021-10-17T21:01:05Z" profile_url: https://www.dynamicend-to-end.com/leverage/metrics + most_points: 1558364 - rank_att: 38 score_att: 11939981 rank_def: 297 @@ -5553,8 +5868,9 @@ points: 1545784 rank: 108 tribe_id: 27 - created_at: 2021-09-08T19:01:03Z + created_at: "2021-09-08T19:01:03Z" profile_url: https://www.corporateenable.biz/niches/innovate/partnerships + most_points: 1545784 - rank_att: 82 score_att: 8104110 rank_def: 338 @@ -5570,8 +5886,9 @@ points: 1529147 rank: 109 tribe_id: 2 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: http://www.directinteractive.org/one-to-one/disintermediate/roi + most_points: 1529147 - rank_att: 66 score_att: 9113520 rank_def: 229 @@ -5587,8 +5904,9 @@ points: 1518119 rank: 110 tribe_id: 28 - created_at: 2021-09-08T13:01:10Z + created_at: "2021-09-08T13:01:10Z" profile_url: https://www.humanopen-source.org/envisioneer/utilize + most_points: 1518119 - rank_att: 168 score_att: 3871575 rank_def: 819 @@ -5604,8 +5922,9 @@ points: 1513361 rank: 111 tribe_id: 2 - created_at: 2021-10-05T11:01:00Z + created_at: "2021-10-05T11:01:00Z" profile_url: http://www.legacyinnovative.biz/frictionless + most_points: 1513361 - rank_att: 173 score_att: 3788425 rank_def: 798 @@ -5621,8 +5940,9 @@ points: 1512980 rank: 112 tribe_id: 2 - created_at: 2021-10-12T20:01:09Z + created_at: "2021-10-12T20:01:09Z" profile_url: http://www.leadparadigms.biz/customized + most_points: 1512980 - rank_att: 87 score_att: 7639229 rank_def: 369 @@ -5638,8 +5958,9 @@ points: 1500687 rank: 113 tribe_id: 28 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: http://www.forwardapplications.org/e-tailers/utilize/aggregate/bandwidth + most_points: 1500687 - rank_att: 22 score_att: 17715276 rank_def: 5 @@ -5655,8 +5976,9 @@ points: 1489479 rank: 114 tribe_id: 1 - created_at: 2021-09-02T23:01:13Z + created_at: "2021-09-02T23:01:13Z" profile_url: http://www.directinterfaces.name/24-7 + most_points: 1489479 - rank_att: 137 score_att: 5280497 rank_def: 661 @@ -5672,8 +5994,9 @@ points: 1453835 rank: 115 tribe_id: 28 - created_at: 2021-09-09T15:01:07Z + created_at: "2021-09-09T15:01:07Z" profile_url: https://www.seniorweb-enabled.biz/reinvent + most_points: 1453835 - rank_att: 88 score_att: 7580662 rank_def: 532 @@ -5689,8 +6012,9 @@ points: 1449447 rank: 116 tribe_id: 28 - created_at: 2021-09-12T12:01:08Z + created_at: "2021-09-12T12:01:08Z" profile_url: https://www.internationalcutting-edge.net/optimize/reintermediate/paradigms/transform + most_points: 1449447 - rank_att: 92 score_att: 7250026 rank_def: 274 @@ -5706,8 +6030,9 @@ points: 1441236 rank: 117 tribe_id: 28 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: https://www.nationalinterfaces.org/grow/cross-media/out-of-the-box/embrace + most_points: 1441236 - rank_att: 126 score_att: 5527463 rank_def: 516 @@ -5723,8 +6048,9 @@ points: 1440315 rank: 118 tribe_id: 1 - created_at: 2021-09-15T20:01:13Z + created_at: "2021-09-15T20:01:13Z" profile_url: http://www.legacydrive.biz/global/supply-chains/bricks-and-clicks/web-readiness + most_points: 1440315 - rank_att: 153 score_att: 4485180 rank_def: 134 @@ -5740,8 +6066,9 @@ points: 1415990 rank: 119 tribe_id: 122 - created_at: 2021-09-08T02:00:58Z + created_at: "2021-09-08T02:00:58Z" profile_url: http://www.internale-business.info/mission-critical/transform + most_points: 1415990 - rank_att: 177 score_att: 3754779 rank_def: 574 @@ -5757,8 +6084,9 @@ points: 1356292 rank: 122 tribe_id: 28 - created_at: 2021-09-04T14:01:09Z + created_at: "2021-09-04T14:01:09Z" profile_url: http://www.districtplatforms.info/harness/mesh/b2b/24-365 + most_points: 1356292 - rank_att: 461 score_att: 473311 rank_def: 382 @@ -5774,8 +6102,9 @@ points: 1340157 rank: 123 tribe_id: 28 - created_at: 2021-09-08T17:01:03Z + created_at: "2021-09-08T17:01:03Z" profile_url: http://www.forwardchannels.info/b2c + most_points: 1340157 - rank_att: 175 score_att: 3767360 rank_def: 458 @@ -5791,8 +6120,9 @@ points: 1287281 rank: 124 tribe_id: 28 - created_at: 2021-09-06T16:01:06Z + created_at: "2021-09-06T16:01:06Z" profile_url: https://www.centraltarget.name/ubiquitous + most_points: 1287281 - rank_att: 223 score_att: 2609105 rank_def: 974 @@ -5808,8 +6138,9 @@ points: 1285017 rank: 125 tribe_id: 27 - created_at: 2021-10-11T17:01:03Z + created_at: "2021-10-11T17:01:03Z" profile_url: http://www.humanmetrics.org/webservices/magnetic/web-enabled + most_points: 1285017 - rank_att: 187 score_att: 3559586 rank_def: 580 @@ -5825,8 +6156,9 @@ points: 1261836 rank: 126 tribe_id: 27 - created_at: 2021-10-02T12:01:01Z + created_at: "2021-10-02T12:01:01Z" profile_url: http://www.centralexploit.io/web-readiness/clicks-and-mortar + most_points: 1261836 - rank_att: 116 score_att: 6038643 rank_def: 570 @@ -5842,8 +6174,9 @@ points: 1260555 rank: 127 tribe_id: 27 - created_at: 2021-09-08T20:01:11Z + created_at: "2021-09-08T20:01:11Z" profile_url: http://www.dynamictechnologies.biz/portals/expedite/mindshare/solutions + most_points: 1260555 - rank_att: 156 score_att: 4321783 rank_def: 654 @@ -5859,8 +6192,9 @@ points: 1259632 rank: 128 tribe_id: 27 - created_at: 2021-09-12T13:00:58Z + created_at: "2021-09-12T13:00:58Z" profile_url: https://www.globalsynergize.biz/repurpose/solutions + most_points: 1259632 - rank_att: 174 score_att: 3770364 rank_def: 610 @@ -5876,8 +6210,9 @@ points: 1237633 rank: 129 tribe_id: 28 - created_at: 2021-09-13T14:01:12Z + created_at: "2021-09-13T14:01:12Z" profile_url: https://www.regionaldisintermediate.net/cross-platform/innovative/action-items + most_points: 1237633 - rank_att: 197 score_att: 3333151 rank_def: 585 @@ -5893,8 +6228,9 @@ points: 1217341 rank: 130 tribe_id: 2 - created_at: 2021-09-03T15:01:09Z + created_at: "2021-09-03T15:01:09Z" profile_url: https://www.districtportals.io/revolutionize + most_points: 1217341 - rank_att: 205 score_att: 3165859 rank_def: 1074 @@ -5910,8 +6246,9 @@ points: 1195038 rank: 132 tribe_id: 27 - created_at: 2021-10-17T21:01:05Z + created_at: "2021-10-17T21:01:05Z" profile_url: http://www.seniorholistic.com/transform + most_points: 1195038 - rank_att: 123 score_att: 5723684 rank_def: 568 @@ -5927,8 +6264,9 @@ points: 1189007 rank: 133 tribe_id: 27 - created_at: 2021-09-19T09:01:06Z + created_at: "2021-09-19T09:01:06Z" profile_url: https://www.seniormatrix.com/architectures/granular + most_points: 1189007 - rank_att: 212 score_att: 2902825 rank_def: 592 @@ -5944,8 +6282,9 @@ points: 1182437 rank: 134 tribe_id: 27 - created_at: 2021-09-04T17:01:12Z + created_at: "2021-09-04T17:01:12Z" profile_url: https://www.internaliterate.info/sexy/sexy/drive + most_points: 1182437 - rank_att: 151 score_att: 4691276 rank_def: 772 @@ -5961,8 +6300,9 @@ points: 1179818 rank: 135 tribe_id: 2 - created_at: 2021-09-21T19:01:08Z + created_at: "2021-09-21T19:01:08Z" profile_url: https://www.futuree-markets.com/empower + most_points: 1179818 - rank_att: 125 score_att: 5547623 rank_def: 626 @@ -5978,8 +6318,9 @@ points: 1179716 rank: 136 tribe_id: 28 - created_at: 2021-09-08T17:01:03Z + created_at: "2021-09-08T17:01:03Z" profile_url: https://www.internationalconvergence.info/enhance/strategize/technologies + most_points: 1179716 - rank_att: 249 score_att: 2248356 rank_def: 911 @@ -5995,8 +6336,9 @@ points: 1174422 rank: 137 tribe_id: 2 - created_at: 2021-09-03T21:00:57Z + created_at: "2021-09-03T21:00:57Z" profile_url: http://www.forwarddistributed.org/cross-platform/end-to-end + most_points: 1174422 - rank_att: 262 score_att: 2132679 rank_def: 609 @@ -6012,8 +6354,9 @@ points: 1169948 rank: 138 tribe_id: 27 - created_at: 2021-10-01T09:00:59Z + created_at: "2021-10-01T09:00:59Z" profile_url: https://www.districtdeliver.com/communities/e-business + most_points: 1169948 - rank_att: 107 score_att: 6280841 rank_def: 524 @@ -6029,8 +6372,9 @@ points: 1155749 rank: 140 tribe_id: 27 - created_at: 2021-10-01T13:01:05Z + created_at: "2021-10-01T13:01:05Z" profile_url: https://www.centralcultivate.name/out-of-the-box/cultivate + most_points: 1155749 - rank_att: 159 score_att: 4188246 rank_def: 863 @@ -6046,8 +6390,9 @@ points: 1128143 rank: 141 tribe_id: 2 - created_at: 2021-10-08T13:01:05Z + created_at: "2021-10-08T13:01:05Z" profile_url: https://www.productbandwidth.name/utilize/bricks-and-clicks/empower + most_points: 1128143 - rank_att: 145 score_att: 5107201 rank_def: 54 @@ -6063,8 +6408,9 @@ points: 1127618 rank: 142 tribe_id: 2 - created_at: 2021-09-03T13:01:02Z + created_at: "2021-09-03T13:01:02Z" profile_url: https://www.futureconvergence.org/wireless/facilitate + most_points: 1127618 - rank_att: 393 score_att: 768012 rank_def: 147 @@ -6080,8 +6426,9 @@ points: 1105495 rank: 143 tribe_id: 1 - created_at: 2021-09-05T12:01:08Z + created_at: "2021-09-05T12:01:08Z" profile_url: https://www.dynamicpartnerships.info/extend + most_points: 1105495 - rank_att: 129 score_att: 5462571 rank_def: 550 @@ -6097,8 +6444,9 @@ points: 1091535 rank: 144 tribe_id: 2 - created_at: 2021-10-13T06:00:51Z + created_at: "2021-10-13T06:00:51Z" profile_url: http://www.leadturn-key.name/cross-platform/integrated/cross-media + most_points: 1091535 - rank_att: 124 score_att: 5685973 rank_def: 12 @@ -6114,8 +6462,9 @@ points: 1088744 rank: 145 tribe_id: 1 - created_at: 2021-09-02T20:00:41Z + created_at: "2021-09-02T20:00:41Z" profile_url: http://www.forwardtransition.biz/clicks-and-mortar/mission-critical/models + most_points: 1088744 - rank_att: 437 score_att: 570612 rank_def: 472 @@ -6131,8 +6480,9 @@ points: 1087231 rank: 146 tribe_id: 1 - created_at: 2021-10-28T21:01:02Z + created_at: "2021-10-28T21:01:02Z" profile_url: https://www.regionaldeploy.com/cultivate + most_points: 1087231 - rank_att: 191 score_att: 3488767 rank_def: 740 @@ -6148,8 +6498,9 @@ points: 1072528 rank: 147 tribe_id: 28 - created_at: 2021-09-04T16:00:52Z + created_at: "2021-09-04T16:00:52Z" profile_url: https://www.nationaloptimize.org/rich/deliverables/deploy/web-enabled + most_points: 1072528 - rank_att: 121 score_att: 5823306 rank_def: 270 @@ -6165,8 +6516,9 @@ points: 1069663 rank: 148 tribe_id: 28 - created_at: 2021-09-12T12:01:08Z + created_at: "2021-09-12T12:01:08Z" profile_url: https://www.customerengineer.name/engage/deploy/unleash/transform + most_points: 1069663 - rank_att: 97 score_att: 6790716 rank_def: 549 @@ -6182,8 +6534,9 @@ points: 1066334 rank: 149 tribe_id: 27 - created_at: 2021-09-10T08:01:03Z + created_at: "2021-09-10T08:01:03Z" profile_url: http://www.investorincentivize.name/dot-com + most_points: 1066334 - rank_att: 154 score_att: 4361952 rank_def: 775 @@ -6199,8 +6552,9 @@ points: 1053301 rank: 150 tribe_id: 28 - created_at: 2021-09-10T10:00:48Z + created_at: "2021-09-10T10:00:48Z" profile_url: http://www.productexploit.io/revolutionary/integrate/seize + most_points: 1053301 - rank_att: 180 score_att: 3740020 rank_def: 583 @@ -6216,8 +6570,9 @@ points: 1046872 rank: 151 tribe_id: 28 - created_at: 2021-09-14T14:01:10Z + created_at: "2021-09-14T14:01:10Z" profile_url: http://www.nationalcultivate.info/unleash/dot-com/implement + most_points: 1046872 - rank_att: 248 score_att: 2250227 rank_def: 856 @@ -6233,8 +6588,9 @@ points: 1025443 rank: 152 tribe_id: 28 - created_at: 2021-09-02T20:00:41Z + created_at: "2021-09-02T20:00:41Z" profile_url: http://www.humanuser-centric.net/world-class/user-centric + most_points: 1025443 - rank_att: 170 score_att: 3838236 rank_def: 489 @@ -6250,8 +6606,9 @@ points: 1024717 rank: 153 tribe_id: 27 - created_at: 2021-09-08T12:01:04Z + created_at: "2021-09-08T12:01:04Z" profile_url: https://www.directdeliver.org/niches/frictionless/recontextualize/expedite + most_points: 1024717 - rank_att: 294 score_att: 1643437 rank_def: 510 @@ -6267,8 +6624,9 @@ points: 1018879 rank: 154 tribe_id: 28 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: https://www.centralcompelling.com/partnerships/productize + most_points: 1018879 - rank_att: 201 score_att: 3247384 rank_def: 660 @@ -6284,8 +6642,9 @@ points: 1010139 rank: 155 tribe_id: 122 - created_at: 2021-09-12T18:01:02Z + created_at: "2021-09-12T18:01:02Z" profile_url: http://www.legacye-business.org/web-enabled + most_points: 1010139 - rank_att: 169 score_att: 3871475 rank_def: 362 @@ -6301,8 +6660,9 @@ points: 1004104 rank: 156 tribe_id: 28 - created_at: 2021-09-07T14:00:58Z + created_at: "2021-09-07T14:00:58Z" profile_url: https://www.forwardinteractive.org/front-end/relationships/distributed/recontextualize + most_points: 1004104 - rank_att: 81 score_att: 8116724 rank_def: 3 @@ -6318,8 +6678,9 @@ points: 982552 rank: 158 tribe_id: 1 - created_at: 2021-09-05T14:00:55Z + created_at: "2021-09-05T14:00:55Z" profile_url: http://www.directubiquitous.name/distributed/applications/embrace/whiteboard + most_points: 982552 - rank_att: 183 score_att: 3655772 rank_def: 384 @@ -6335,8 +6696,9 @@ points: 967899 rank: 159 tribe_id: 27 - created_at: 2021-09-03T06:01:09Z + created_at: "2021-09-03T06:01:09Z" profile_url: http://www.internationalarchitect.com/markets/generate/redefine/functionalities + most_points: 967899 - rank_att: 227 score_att: 2587069 rank_def: 165 @@ -6352,8 +6714,9 @@ points: 962675 rank: 161 tribe_id: 1 - created_at: 2021-09-07T08:00:54Z + created_at: "2021-09-07T08:00:54Z" profile_url: http://www.corporateinitiatives.info/niches/mesh + most_points: 962675 - rank_att: 194 score_att: 3341889 rank_def: 741 @@ -6369,8 +6732,9 @@ points: 950500 rank: 162 tribe_id: 27 - created_at: 2021-09-13T15:01:02Z + created_at: "2021-09-13T15:01:02Z" profile_url: https://www.principalimpactful.net/integrated/synergies + most_points: 950500 - rank_att: 165 score_att: 3932651 rank_def: 795 @@ -6386,8 +6750,9 @@ points: 950281 rank: 163 tribe_id: 28 - created_at: 2021-09-08T14:01:10Z + created_at: "2021-09-08T14:01:10Z" profile_url: https://www.districtdrive.org/expedite + most_points: 950281 - rank_att: 295 score_att: 1640336 rank_def: 544 @@ -6403,8 +6768,9 @@ points: 926085 rank: 164 tribe_id: 2 - created_at: 2021-10-12T16:01:04Z + created_at: "2021-10-12T16:01:04Z" profile_url: http://www.forwardcollaborative.io/sexy/transition + most_points: 926085 - rank_att: 412 score_att: 668239 rank_def: 1229 @@ -6420,8 +6786,9 @@ points: 920889 rank: 167 tribe_id: 27 - created_at: 2021-09-08T12:01:04Z + created_at: "2021-09-08T12:01:04Z" profile_url: https://www.productportals.net/extend/e-tailers/global/virtual + most_points: 920889 - rank_att: 372 score_att: 904952 rank_def: 658 @@ -6437,8 +6804,9 @@ points: 914684 rank: 168 tribe_id: 28 - created_at: 2021-09-07T14:00:58Z + created_at: "2021-09-07T14:00:58Z" profile_url: http://www.seniorvalue-added.io/recontextualize/plug-and-play/applications/webservices + most_points: 914684 - rank_att: 203 score_att: 3181591 rank_def: 600 @@ -6454,8 +6822,9 @@ points: 909444 rank: 170 tribe_id: 2 - created_at: 2021-09-24T16:01:06Z + created_at: "2021-09-24T16:01:06Z" profile_url: http://www.districtsyndicate.net/markets/virtual + most_points: 909444 - rank_att: 324 score_att: 1362505 rank_def: 104 @@ -6471,8 +6840,9 @@ points: 907975 rank: 171 tribe_id: 1 - created_at: 2021-10-10T21:00:58Z + created_at: "2021-10-10T21:00:58Z" profile_url: https://www.districtvortals.biz/visionary/architect + most_points: 907975 - rank_att: 51 score_att: 10802658 rank_def: 8 @@ -6488,8 +6858,9 @@ points: 897358 rank: 172 tribe_id: 1 - created_at: 2021-09-03T10:01:07Z + created_at: "2021-09-03T10:01:07Z" profile_url: http://www.legacysolutions.com/whiteboard + most_points: 897358 - rank_att: 270 score_att: 2032303 rank_def: 28 @@ -6505,8 +6876,9 @@ points: 883385 rank: 173 tribe_id: 27 - created_at: 2021-09-03T19:01:05Z + created_at: "2021-09-03T19:01:05Z" profile_url: https://www.globaliterate.org/utilize + most_points: 883385 - rank_att: 281 score_att: 1862598 rank_def: 1346 @@ -6522,8 +6894,9 @@ points: 875264 rank: 174 tribe_id: 2 - created_at: 2021-10-03T13:00:54Z + created_at: "2021-10-03T13:00:54Z" profile_url: http://www.regionalleverage.org/sticky/b2c/infomediaries + most_points: 875264 - rank_att: 172 score_att: 3790718 rank_def: 507 @@ -6539,8 +6912,9 @@ points: 874206 rank: 175 tribe_id: 27 - created_at: 2021-09-07T22:00:49Z + created_at: "2021-09-07T22:00:49Z" profile_url: https://www.centralbricks-and-clicks.biz/schemas/unleash + most_points: 874206 - rank_att: 157 score_att: 4299165 rank_def: 593 @@ -6556,8 +6930,9 @@ points: 855702 rank: 176 tribe_id: 27 - created_at: 2021-11-18T11:01:02Z + created_at: "2021-11-18T11:01:02Z" profile_url: http://www.regionalviral.com/ubiquitous/cutting-edge + most_points: 855702 - rank_att: 283 score_att: 1803286 rank_def: 705 @@ -6573,8 +6948,9 @@ points: 834265 rank: 177 tribe_id: 28 - created_at: 2021-09-08T21:00:59Z + created_at: "2021-09-08T21:00:59Z" profile_url: http://www.globalinnovative.net/robust/deliver + most_points: 834265 - rank_att: 311 score_att: 1490677 rank_def: 1157 @@ -6590,8 +6966,9 @@ points: 806421 rank: 178 tribe_id: 2 - created_at: 2021-10-22T12:00:59Z + created_at: "2021-10-22T12:00:59Z" profile_url: https://www.investorsynthesize.com/convergence/streamline + most_points: 806421 - rank_att: 185 score_att: 3586387 rank_def: 406 @@ -6607,8 +6984,9 @@ points: 743775 rank: 180 tribe_id: 27 - created_at: 2021-09-29T20:01:00Z + created_at: "2021-09-29T20:01:00Z" profile_url: https://www.districtweb-enabled.name/partnerships + most_points: 743775 - rank_att: 134 score_att: 5335837 rank_def: 97 @@ -6624,8 +7002,9 @@ points: 742302 rank: 181 tribe_id: 1 - created_at: 2021-09-03T17:00:59Z + created_at: "2021-09-03T17:00:59Z" profile_url: http://www.customer24-7.org/distributed + most_points: 742302 - rank_att: 265 score_att: 2118076 rank_def: 206 @@ -6641,8 +7020,9 @@ points: 740887 rank: 182 tribe_id: 1 - created_at: 2021-09-03T07:01:00Z + created_at: "2021-09-03T07:01:00Z" profile_url: http://www.globalincentivize.org/holistic + most_points: 740887 - rank_att: 585 score_att: 163522 rank_def: 779 @@ -6658,8 +7038,9 @@ points: 735773 rank: 183 tribe_id: 28 - created_at: 2021-09-15T21:01:00Z + created_at: "2021-09-15T21:01:00Z" profile_url: http://www.leadsupply-chains.biz/architect/integrated/value-added + most_points: 735773 - rank_att: 210 score_att: 2968464 rank_def: 204 @@ -6675,8 +7056,9 @@ points: 723716 rank: 184 tribe_id: 1 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: http://www.investoruser-centric.info/seize/methodologies/end-to-end + most_points: 723716 - rank_att: 196 score_att: 3336005 rank_def: 34 @@ -6692,8 +7074,9 @@ points: 718980 rank: 185 tribe_id: 1 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: http://www.dynamicincentivize.org/solutions + most_points: 718980 - rank_att: 337 score_att: 1250317 rank_def: 761 @@ -6709,8 +7092,9 @@ points: 703296 rank: 187 tribe_id: 2 - created_at: 2021-10-04T17:00:53Z + created_at: "2021-10-04T17:00:53Z" profile_url: http://www.leadend-to-end.info/integrate + most_points: 703296 - rank_att: 35 score_att: 12169486 rank_def: 426 @@ -6726,8 +7110,9 @@ points: 686432 rank: 189 tribe_id: 122 - created_at: 2021-09-08T17:01:03Z + created_at: "2021-09-08T17:01:03Z" profile_url: https://www.internationalengineer.net/impactful/distributed/whiteboard/robust + most_points: 686432 - rank_att: 252 score_att: 2243916 rank_def: 624 @@ -6743,8 +7128,9 @@ points: 667845 rank: 190 tribe_id: 27 - created_at: 2021-09-03T15:01:09Z + created_at: "2021-09-03T15:01:09Z" profile_url: http://www.chieforchestrate.info/streamline/monetize/enhance + most_points: 667845 - rank_att: 241 score_att: 2348710 rank_def: 1037 @@ -6760,8 +7146,9 @@ points: 662934 rank: 191 tribe_id: 27 - created_at: 2021-09-03T01:01:05Z + created_at: "2021-09-03T01:01:05Z" profile_url: https://www.forwarde-business.io/out-of-the-box/intuitive/best-of-breed/best-of-breed + most_points: 662934 - rank_att: 231 score_att: 2494564 rank_def: 62 @@ -6777,8 +7164,9 @@ points: 654844 rank: 192 tribe_id: 2 - created_at: 2021-09-03T20:01:05Z + created_at: "2021-09-03T20:01:05Z" profile_url: https://www.dynamicdrive.info/strategic/cross-media/interactive/networks + most_points: 654844 - rank_att: 257 score_att: 2205853 rank_def: 749 @@ -6794,8 +7182,9 @@ points: 653071 rank: 193 tribe_id: 28 - created_at: 2021-09-09T07:01:09Z + created_at: "2021-09-09T07:01:09Z" profile_url: https://www.nationalbest-of-breed.net/methodologies/productize + most_points: 653071 - rank_att: 273 score_att: 1957196 rank_def: 61 @@ -6811,8 +7200,9 @@ points: 642324 rank: 194 tribe_id: 1 - created_at: 2021-09-11T09:01:02Z + created_at: "2021-09-11T09:01:02Z" profile_url: http://www.dynamicproductize.biz/platforms/seamless + most_points: 642324 - rank_att: 645 score_att: 109390 rank_def: 704 @@ -6828,8 +7218,9 @@ points: 621761 rank: 195 tribe_id: 1 - created_at: 2021-09-12T11:00:55Z + created_at: "2021-09-12T11:00:55Z" profile_url: https://www.legacyseize.com/architectures/models + most_points: 621761 - rank_att: 318 score_att: 1407611 rank_def: 651 @@ -6845,8 +7236,9 @@ points: 624173 rank: 196 tribe_id: 2 - created_at: 2021-10-06T15:01:02Z + created_at: "2021-10-06T15:01:02Z" profile_url: https://www.dynamice-commerce.org/web-readiness/whiteboard + most_points: 624173 - rank_att: 70 score_att: 8851103 rank_def: 6 @@ -6862,8 +7254,9 @@ points: 605981 rank: 197 tribe_id: 1 - created_at: 2021-09-02T19:01:08Z + created_at: "2021-09-02T19:01:08Z" profile_url: https://www.legacyoptimize.name/intuitive/grow + most_points: 605981 - rank_att: 214 score_att: 2728284 rank_def: 330 @@ -6879,8 +7272,9 @@ points: 597677 rank: 198 tribe_id: 1 - created_at: 2021-09-02T22:00:37Z + created_at: "2021-09-02T22:00:37Z" profile_url: http://www.customersynergize.org/platforms/virtual/visionary + most_points: 597677 - rank_att: 195 score_att: 3338544 rank_def: 49 @@ -6896,8 +7290,9 @@ points: 580241 rank: 200 tribe_id: 1 - created_at: 2021-09-05T11:01:04Z + created_at: "2021-09-05T11:01:04Z" profile_url: http://www.productfrictionless.biz/vertical + most_points: 580241 - rank_att: 216 score_att: 2698716 rank_def: 383 @@ -6913,8 +7308,9 @@ points: 573865 rank: 201 tribe_id: 27 - created_at: 2021-10-03T15:01:00Z + created_at: "2021-10-03T15:01:00Z" profile_url: https://www.centralroi.io/extensible/incubate/proactive/initiatives + most_points: 573865 - rank_att: 428 score_att: 605550 rank_def: 355 @@ -6930,8 +7326,9 @@ points: 567471 rank: 203 tribe_id: 1 - created_at: 2021-09-03T10:01:07Z + created_at: "2021-09-03T10:01:07Z" profile_url: https://www.directseize.com/deploy/clicks-and-mortar + most_points: 567471 - rank_att: 198 score_att: 3303909 rank_def: 588 @@ -6947,8 +7344,9 @@ points: 527925 rank: 205 tribe_id: 122 - created_at: 2021-09-21T12:01:04Z + created_at: "2021-09-21T12:01:04Z" profile_url: http://www.regionalbleeding-edge.net/real-time/webservices + most_points: 527925 - rank_att: 394 score_att: 763519 rank_def: 797 @@ -6964,8 +7362,9 @@ points: 524662 rank: 206 tribe_id: 122 - created_at: 2021-09-26T01:00:55Z + created_at: "2021-09-26T01:00:55Z" profile_url: https://www.investorvortals.info/metrics/partnerships/infrastructures/recontextualize + most_points: 524662 - rank_att: 140 score_att: 5262646 rank_def: 21 @@ -6981,8 +7380,9 @@ points: 519766 rank: 207 tribe_id: 1 - created_at: 2021-09-02T21:01:03Z + created_at: "2021-09-02T21:01:03Z" profile_url: https://www.regionalmethodologies.com/sexy/user-centric/impactful + most_points: 519766 - rank_att: 383 score_att: 841168 rank_def: 232 @@ -6998,8 +7398,9 @@ points: 497506 rank: 209 tribe_id: 2 - created_at: 2021-09-03T08:00:53Z + created_at: "2021-09-03T08:00:53Z" profile_url: https://www.legacycross-platform.info/b2c/leading-edge/world-class + most_points: 497506 - rank_att: 426 score_att: 609690 rank_def: 427 @@ -7015,8 +7416,9 @@ points: 484381 rank: 210 tribe_id: 1 - created_at: 2021-09-16T14:01:12Z + created_at: "2021-09-16T14:01:12Z" profile_url: http://www.customervisionary.io/intuitive/ubiquitous/sticky + most_points: 484381 - rank_att: 308 score_att: 1500921 rank_def: 59 @@ -7032,8 +7434,9 @@ points: 484159 rank: 211 tribe_id: 1 - created_at: 2021-10-18T21:00:52Z + created_at: "2021-10-18T21:00:52Z" profile_url: http://www.legacyunleash.info/sexy/envisioneer + most_points: 484159 - rank_att: 113 score_att: 6157403 rank_def: 201 @@ -7049,8 +7452,9 @@ points: 461528 rank: 213 tribe_id: 122 - created_at: 2021-09-08T14:01:10Z + created_at: "2021-09-08T14:01:10Z" profile_url: http://www.productmatrix.org/extensible/empower/scale/one-to-one + most_points: 461528 - rank_att: 251 score_att: 2244367 rank_def: 791 @@ -7066,8 +7470,9 @@ points: 444785 rank: 214 tribe_id: 122 - created_at: 2021-09-08T16:01:06Z + created_at: "2021-09-08T16:01:06Z" profile_url: https://www.productone-to-one.name/facilitate/cultivate/schemas + most_points: 444785 - rank_att: 355 score_att: 1089553 rank_def: 1113 @@ -7083,8 +7488,9 @@ points: 440116 rank: 215 tribe_id: 28 - created_at: 2021-09-06T14:00:53Z + created_at: "2021-09-06T14:00:53Z" profile_url: https://www.seniorseize.name/target + most_points: 440116 - rank_att: 282 score_att: 1862190 rank_def: 1412 @@ -7100,8 +7506,9 @@ points: 424854 rank: 219 tribe_id: 122 - created_at: 2021-09-08T16:01:06Z + created_at: "2021-09-08T16:01:06Z" profile_url: https://www.districtrevolutionary.org/transform/frictionless/sexy/global + most_points: 424854 - rank_att: 447 score_att: 522373 rank_def: 1182 @@ -7117,8 +7524,9 @@ points: 419648 rank: 221 tribe_id: 122 - created_at: 2021-09-04T19:01:09Z + created_at: "2021-09-04T19:01:09Z" profile_url: http://www.seniorcompelling.biz/partnerships + most_points: 419648 - rank_att: 240 score_att: 2353641 rank_def: 529 @@ -7134,8 +7542,9 @@ points: 407549 rank: 223 tribe_id: 1 - created_at: 2021-09-26T07:01:03Z + created_at: "2021-09-26T07:01:03Z" profile_url: http://www.corporateopen-source.biz/strategize/viral + most_points: 407549 - rank_att: 335 score_att: 1260311 rank_def: 676 @@ -7151,8 +7560,9 @@ points: 404940 rank: 224 tribe_id: 27 - created_at: 2021-09-16T20:01:06Z + created_at: "2021-09-16T20:01:06Z" profile_url: https://www.forwardmodels.info/frictionless + most_points: 404940 - rank_att: 351 score_att: 1123601 rank_def: 127 @@ -7168,8 +7578,9 @@ points: 399755 rank: 227 tribe_id: 1 - created_at: 2021-09-09T19:01:08Z + created_at: "2021-09-09T19:01:08Z" profile_url: https://www.forwardone-to-one.org/viral/interfaces/reinvent/mission-critical + most_points: 399755 - rank_att: 389 score_att: 800762 rank_def: 921 @@ -7185,8 +7596,9 @@ points: 397528 rank: 228 tribe_id: 1 - created_at: 2021-10-04T13:01:06Z + created_at: "2021-10-04T13:01:06Z" profile_url: https://www.directseize.io/models/brand/synergize/frictionless + most_points: 397528 - rank_att: 449 score_att: 512383 rank_def: 520 @@ -7202,8 +7614,9 @@ points: 386151 rank: 229 tribe_id: 1 - created_at: 2021-10-18T11:00:51Z + created_at: "2021-10-18T11:00:51Z" profile_url: http://www.legacysticky.com/benchmark + most_points: 386151 - rank_att: 387 score_att: 821208 rank_def: 1207 @@ -7219,8 +7632,9 @@ points: 371629 rank: 231 tribe_id: 2 - created_at: 2021-09-17T09:01:00Z + created_at: "2021-09-17T09:01:00Z" profile_url: http://www.dynamicbleeding-edge.info/synergies/dynamic/productize/relationships + most_points: 371629 - model: Village rows: - _id: pl169-village-1 @@ -7233,7 +7647,7 @@ continent: K43 bonus: 0 player_id: 699783765 - created_at: 2021-09-17T09:01:00.000Z + created_at: "2021-09-17T09:01:00.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_village&id=1111 - _id: pl169-village-2 id: 1112 @@ -7245,7 +7659,7 @@ continent: K45 bonus: 1 player_id: 699783765 - created_at: 2021-09-19T09:01:00.000Z + created_at: "2021-09-19T09:01:00.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_village&id=1112 - _id: pl169-village-3 id: 1113 @@ -7257,7 +7671,7 @@ continent: K45 bonus: 0 player_id: 0 - created_at: 2021-09-30T15:11:00.000Z + created_at: "2021-09-30T15:11:00.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_village&id=1113 - _id: pl169-village-4 id: 1114 @@ -7269,7 +7683,7 @@ continent: K45 bonus: 4 player_id: 0 - created_at: 2021-09-29T05:11:00.000Z + created_at: "2021-09-29T05:11:00.000Z" profile_url: https://pl169.plemiona.pl/game.php?screen=info_village&id=1114 - _id: it70-village-1 id: 10022 @@ -7281,7 +7695,7 @@ continent: K55 bonus: 4 player_id: 578014 - created_at: 2022-02-21T18:00:10.000Z + created_at: "2022-02-21T18:00:10.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_village&id=10022 - _id: it70-village-2 id: 10023 @@ -7293,7 +7707,7 @@ continent: K56 bonus: 0 player_id: 578014 - created_at: 2022-02-22T15:00:10.000Z + created_at: "2022-02-22T15:00:10.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_village&id=10023 - _id: it70-village-3 id: 10024 @@ -7305,7 +7719,7 @@ continent: K11 bonus: 0 player_id: 0 - created_at: 2022-02-25T15:00:10.000Z + created_at: "2022-02-25T15:00:10.000Z" profile_url: https://it70.tribals.it/game.php?screen=info_village&id=10024 - model: Ennoblement rows: @@ -7318,7 +7732,7 @@ old_owner_id: 0 old_tribe_id: 0 points: 2500 - created_at: 2021-09-30T09:01:00.000Z + created_at: "2021-09-30T09:01:00.000Z" - _id: pl169-village-2-2 id: 10001 server_key: pl169 @@ -7328,7 +7742,7 @@ old_owner_id: 699513260 old_tribe_id: 27 points: 5000 - created_at: 2021-10-30T09:01:00.000Z + created_at: "2021-10-30T09:01:00.000Z" - _id: it70-village-2-1 id: 20000 server_key: it70 @@ -7338,7 +7752,7 @@ old_owner_id: 0 old_tribe_id: 0 points: 2500 - created_at: 2022-03-15T15:00:10.000Z + created_at: "2022-03-15T15:00:10.000Z" - _id: it70-village-2-2 id: 20001 server_key: it70 @@ -7348,7 +7762,7 @@ old_owner_id: 848881282 old_tribe_id: 31 points: 5123 - created_at: 2022-04-22T15:00:10.000Z + created_at: "2022-04-22T15:00:10.000Z" - model: TribeChange rows: - _id: de188-1577279214-0-772-1 @@ -7357,42 +7771,42 @@ old_tribe_id: 0 new_tribe_id: 772 server_key: de188 - created_at: 2021-06-25T12:00:53.000Z + created_at: "2021-06-25T12:00:53.000Z" - _id: de188-1577279214-772-0 id: 10001 player_id: 1577279214 old_tribe_id: 772 new_tribe_id: 0 server_key: de188 - created_at: 2021-06-30T12:00:53.000Z + created_at: "2021-06-30T12:00:53.000Z" - _id: de188-1577279214-0-772-2 id: 10002 player_id: 1577279214 old_tribe_id: 0 new_tribe_id: 772 server_key: de188 - created_at: 2021-07-01T12:00:53.000Z + created_at: "2021-07-01T12:00:53.000Z" - _id: de188-2572835-0-772 id: 10010 player_id: 2572835 old_tribe_id: 0 new_tribe_id: 772 server_key: de188 - created_at: 2021-02-25T18:01:02.000Z + created_at: "2021-02-25T18:01:02.000Z" - _id: pl169-6180190-0-27 id: 10100 player_id: 6180190 old_tribe_id: 0 new_tribe_id: 27 server_key: pl169 - created_at: 2021-09-04T21:01:03.000Z + created_at: "2021-09-04T21:01:03.000Z" - _id: pl169-8419570-0-2 id: 10110 player_id: 8419570 old_tribe_id: 0 new_tribe_id: 2 server_key: pl169 - created_at: 2021-09-10T20:01:11.000Z + created_at: "2021-09-10T20:01:11.000Z" - model: ServerSnapshot rows: - id: 10000 @@ -7407,8 +7821,8 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - date: 2024-05-01T05:15:25.154992Z - created_at: 2024-05-01T05:15:25.154994Z + date: "2024-05-01T05:15:25.154992Z" + created_at: "2024-05-01T05:15:25.154994Z" - id: 10001 server_key: de188 num_players: 0 @@ -7421,8 +7835,8 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - date: 2024-05-02T05:15:25.154992Z - created_at: 2024-05-02T05:15:25.154994Z + date: "2024-05-02T05:15:25.154992Z" + created_at: "2024-05-02T05:15:25.154994Z" - id: 20000 server_key: it70 num_players: 0 @@ -7435,8 +7849,8 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - date: 2024-05-03T05:15:25.154992Z - created_at: 2024-05-03T05:15:25.154994Z + date: "2024-05-03T05:15:25.154992Z" + created_at: "2024-05-03T05:15:25.154994Z" - id: 20001 server_key: it70 num_players: 0 @@ -7449,8 +7863,8 @@ num_player_villages: 15000 num_barbarian_villages: 1180 num_bonus_villages: 512 - date: 2024-05-04T05:15:25.154992Z - created_at: 2024-05-04T05:15:25.154994Z + date: "2024-05-04T05:15:25.154992Z" + created_at: "2024-05-04T05:15:25.154994Z" - model: TribeSnapshot rows: - rank_att: 1 @@ -7471,8 +7885,8 @@ all_points: 143350058 rank: 1 dominance: 29.76912481240106 - date: 2021-09-02T00:00:00.000Z - created_at: 2021-09-02T23:01:13.000Z + date: "2021-09-02T00:00:00.000Z" + created_at: "2021-09-02T23:01:13.000Z" - rank_att: 1 score_att: 669292167 rank_def: 5 @@ -7491,8 +7905,8 @@ all_points: 143350058 rank: 1 dominance: 29.76912481240106 - date: 2021-09-03T00:00:00.000Z - created_at: 2021-09-03T23:01:13.000Z + date: "2021-09-03T00:00:00.000Z" + created_at: "2021-09-03T23:01:13.000Z" - rank_att: 2 score_att: 513902873 rank_def: 6 @@ -7511,8 +7925,8 @@ all_points: 97812820 rank: 3 dominance: 20.87128142924693 - date: 2021-09-02T00:00:00.000Z - created_at: 2021-09-02T22:00:37.000Z + date: "2021-09-02T00:00:00.000Z" + created_at: "2021-09-02T22:00:37.000Z" - rank_att: 2 score_att: 513902873 rank_def: 6 @@ -7531,8 +7945,8 @@ all_points: 97812820 rank: 3 dominance: 20.87128142924693 - date: 2021-09-03T00:00:00.000Z - created_at: 2021-09-03T22:00:37.000Z + date: "2021-09-03T00:00:00.000Z" + created_at: "2021-09-03T22:00:37.000Z" - rank_att: 1 score_att: 1449031872 rank_def: 1 @@ -7551,8 +7965,8 @@ all_points: 266237628 rank: 1 dominance: 54.27478896611433 - date: 2020-06-22T00:00:00.000Z - created_at: 2020-06-22T13:45:46.000Z + date: "2020-06-22T00:00:00.000Z" + created_at: "2020-06-22T13:45:46.000Z" - rank_att: 1 score_att: 1449031872 rank_def: 1 @@ -7571,8 +7985,8 @@ all_points: 266237628 rank: 1 dominance: 54.27478896611433 - date: 2020-06-23T00:00:00.000Z - created_at: 2020-06-23T13:45:46.000Z + date: "2020-06-23T00:00:00.000Z" + created_at: "2020-06-23T13:45:46.000Z" - model: PlayerSnapshot rows: - rank_att: 5 @@ -7591,8 +8005,8 @@ points: 7298055 rank: 1 tribe_id: 27 - date: 2021-09-02T00:00:00.000Z - created_at: 2021-09-02T21:01:03.000Z + date: "2021-09-02T00:00:00.000Z" + created_at: "2021-09-02T21:01:03.000Z" - rank_att: 5 score_att: 38213157 rank_def: 2 @@ -7609,8 +8023,8 @@ points: 7298055 rank: 1 tribe_id: 27 - date: 2021-09-03T00:00:00.000Z - created_at: 2021-09-03T21:01:03.000Z + date: "2021-09-03T00:00:00.000Z" + created_at: "2021-09-03T21:01:03.000Z" - rank_att: 13 score_att: 23124653 rank_def: 112 @@ -7627,8 +8041,8 @@ points: 6292398 rank: 2 tribe_id: 2 - date: 2021-09-08T00:00:00.000Z - created_at: 2021-09-08T20:01:11.000Z + date: "2021-09-08T00:00:00.000Z" + created_at: "2021-09-08T20:01:11.000Z" - rank_att: 10 score_att: 27638462 rank_def: 35 @@ -7645,8 +8059,8 @@ points: 9199775 rank: 1 tribe_id: 772 - date: 2021-06-25T00:00:00.000Z - created_at: 2021-06-25T11:00:53.000Z + date: "2021-06-25T00:00:00.000Z" + created_at: "2021-06-25T11:00:53.000Z" - rank_att: 10 score_att: 27638462 rank_def: 35 @@ -7663,5 +8077,5 @@ points: 9199775 rank: 1 tribe_id: 772 - date: 2021-06-26T00:00:00.000Z - created_at: 2021-06-26T11:00:53.000Z + date: "2021-06-26T00:00:00.000Z" + created_at: "2021-06-26T11:00:53.000Z"