From e2dd12ff92662b604e8be87886405b4e5c71dc37 Mon Sep 17 00:00:00 2001 From: bragaz Date: Mon, 29 Jun 2020 15:01:06 +0200 Subject: [PATCH 01/11] removed `models` and `msgs` folder as it's inside `profiles` module --- x/magpie/alias.go | 18 +- x/posts/alias.go | 90 ++++----- x/posts/internal/keeper/common_test.go | 2 +- x/posts/internal/types/alias.go | 67 ++----- x/posts/internal/types/codec.go | 8 +- .../types/{models => }/common/keys.go | 0 .../types/{models => }/common/post_media.go | 0 .../{models => }/common/post_media_test.go | 2 +- .../{models => }/common/post_optional_data.go | 0 .../types/{models => }/common/reactions.go | 0 x/posts/internal/types/{models => }/keys.go | 2 +- x/posts/internal/types/models/alias.go | 84 -------- x/posts/internal/types/models/codec.go | 17 -- .../types/{msgs => }/msg_reactions.go | 15 +- .../types/{msgs => }/msg_reactions_test.go | 24 +-- x/posts/internal/types/{msgs => }/msgs.go | 43 ++--- x/posts/internal/types/msgs/codec.go | 22 --- .../internal/types/{msgs => }/msgs_polls.go | 17 +- .../types/{msgs => }/msgs_polls_test.go | 17 +- .../types/{msgs => }/msgs_post_reactions.go | 27 ++- .../{msgs => }/msgs_post_reactions_test.go | 35 ++-- .../internal/types/{msgs => }/msgs_test.go | 123 ++++++------ .../{models => }/poll_answers_response.go | 2 +- .../poll_answers_response_test.go | 8 +- .../types/{models => }/polls/poll_answer.go | 0 .../{models => }/polls/poll_answer_test.go | 2 +- .../types/{models => }/polls/poll_data.go | 0 .../{models => }/polls/poll_data_test.go | 2 +- x/posts/internal/types/{models => }/post.go | 2 +- .../types/{models => }/post_response.go | 2 +- .../types/{models => }/post_response_test.go | 70 +++---- .../internal/types/{models => }/post_test.go | 182 +++++++++--------- .../{models => }/reactions/post_reaction.go | 2 +- .../reactions/post_reaction_test.go | 2 +- .../types/{models => }/reactions/reaction.go | 2 +- .../{models => }/reactions/reaction_test.go | 2 +- x/profiles/alias.go | 34 ++-- x/reports/alias.go | 48 ++--- 38 files changed, 404 insertions(+), 569 deletions(-) rename x/posts/internal/types/{models => }/common/keys.go (100%) rename x/posts/internal/types/{models => }/common/post_media.go (100%) rename x/posts/internal/types/{models => }/common/post_media_test.go (99%) rename x/posts/internal/types/{models => }/common/post_optional_data.go (100%) rename x/posts/internal/types/{models => }/common/reactions.go (100%) rename x/posts/internal/types/{models => }/keys.go (98%) delete mode 100644 x/posts/internal/types/models/alias.go delete mode 100644 x/posts/internal/types/models/codec.go rename x/posts/internal/types/{msgs => }/msg_reactions.go (80%) rename x/posts/internal/types/{msgs => }/msg_reactions_test.go (80%) rename x/posts/internal/types/{msgs => }/msgs.go (78%) delete mode 100644 x/posts/internal/types/msgs/codec.go rename x/posts/internal/types/{msgs => }/msgs_polls.go (69%) rename x/posts/internal/types/{msgs => }/msgs_polls_test.go (80%) rename x/posts/internal/types/{msgs => }/msgs_post_reactions.go (77%) rename x/posts/internal/types/{msgs => }/msgs_post_reactions_test.go (80%) rename x/posts/internal/types/{msgs => }/msgs_test.go (87%) rename x/posts/internal/types/{models => }/poll_answers_response.go (97%) rename x/posts/internal/types/{models => }/poll_answers_response_test.go (77%) rename x/posts/internal/types/{models => }/polls/poll_answer.go (100%) rename x/posts/internal/types/{models => }/polls/poll_answer_test.go (98%) rename x/posts/internal/types/{models => }/polls/poll_data.go (100%) rename x/posts/internal/types/{models => }/polls/poll_data_test.go (99%) rename x/posts/internal/types/{models => }/post.go (99%) rename x/posts/internal/types/{models => }/post_response.go (99%) rename x/posts/internal/types/{models => }/post_response_test.go (82%) rename x/posts/internal/types/{models => }/post_test.go (82%) rename x/posts/internal/types/{models => }/reactions/post_reaction.go (98%) rename x/posts/internal/types/{models => }/reactions/post_reaction_test.go (99%) rename x/posts/internal/types/{models => }/reactions/reaction.go (97%) rename x/posts/internal/types/{models => }/reactions/reaction_test.go (98%) diff --git a/x/magpie/alias.go b/x/magpie/alias.go index cf827bfeab..3b745304b3 100644 --- a/x/magpie/alias.go +++ b/x/magpie/alias.go @@ -27,37 +27,37 @@ const ( var ( // functions aliases + NewQuerier = keeper.NewQuerier NewHandler = keeper.NewHandler NewKeeper = keeper.NewKeeper - NewQuerier = keeper.NewQuerier DecodeStore = simulation.DecodeStore RandomSessionData = simulation.RandomSessionData WeightedOperations = simulation.WeightedOperations SimulateMsgCreateSession = simulation.SimulateMsgCreateSession RandomizedGenState = simulation.RandomizedGenState - NewMsgCreateSession = types.NewMsgCreateSession - SessionStoreKey = types.SessionStoreKey - ParseSessionID = types.ParseSessionID - NewSession = types.NewSession NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis RegisterCodec = types.RegisterCodec + NewMsgCreateSession = types.NewMsgCreateSession + SessionStoreKey = types.SessionStoreKey + ParseSessionID = types.ParseSessionID + NewSession = types.NewSession // variable aliases + RandomNamespaces = simulation.RandomNamespaces + ModuleCdc = types.ModuleCdc SessionLengthKey = types.SessionLengthKey LastSessionIDStoreKey = types.LastSessionIDStoreKey SessionStorePrefix = types.SessionStorePrefix - ModuleCdc = types.ModuleCdc - RandomNamespaces = simulation.RandomNamespaces ) type ( - SessionData = simulation.SessionData + GenesisState = types.GenesisState MsgCreateSession = types.MsgCreateSession SessionID = types.SessionID Session = types.Session Sessions = types.Sessions - GenesisState = types.GenesisState Keeper = keeper.Keeper + SessionData = simulation.SessionData ) diff --git a/x/posts/alias.go b/x/posts/alias.go index d2dc843b6b..3e85efcadf 100644 --- a/x/posts/alias.go +++ b/x/posts/alias.go @@ -8,11 +8,9 @@ import ( "github.com/desmos-labs/desmos/x/posts/internal/keeper" "github.com/desmos-labs/desmos/x/posts/internal/simulation" "github.com/desmos-labs/desmos/x/posts/internal/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" - "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" + "github.com/desmos-labs/desmos/x/posts/internal/types/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/reactions" ) const ( @@ -82,13 +80,6 @@ var ( NewReaction = reactions.NewReaction IsEmoji = reactions.IsEmoji NewReactions = reactions.NewReactions - NewMsgAddPostReaction = msgs.NewMsgAddPostReaction - NewMsgRemovePostReaction = msgs.NewMsgRemovePostReaction - NewMsgAnswerPoll = msgs.NewMsgAnswerPoll - NewMsgCreatePost = msgs.NewMsgCreatePost - NewMsgEditPost = msgs.NewMsgEditPost - NewMsgRegisterReaction = msgs.NewMsgRegisterReaction - RegisterMessagesCodec = msgs.RegisterMessagesCodec RegisterInvariants = keeper.RegisterInvariants AllInvariants = keeper.AllInvariants ValidPostsInvariant = keeper.ValidPostsInvariant @@ -98,9 +89,6 @@ var ( NewHandler = keeper.NewHandler NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier - WeightedOperations = simulation.WeightedOperations - RandomizedGenState = simulation.RandomizedGenState - DecodeStore = simulation.DecodeStore SimulateMsgAnswerToPoll = simulation.SimulateMsgAnswerToPoll SimulateMsgAddPostReaction = simulation.SimulateMsgAddPostReaction SimulateMsgRemovePostReaction = simulation.SimulateMsgRemovePostReaction @@ -123,28 +111,31 @@ var ( RandomReactionData = simulation.RandomReactionData RegisteredReactionsData = simulation.RegisteredReactionsData RandomEmojiPostReaction = simulation.RandomEmojiPostReaction - DefaultQueryPostsParams = types.DefaultQueryPostsParams + WeightedOperations = simulation.WeightedOperations + RandomizedGenState = simulation.RandomizedGenState + DecodeStore = simulation.DecodeStore + NewPostResponse = types.NewPostResponse + NewMsgRegisterReaction = types.NewMsgRegisterReaction NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis + ComputeID = types.ComputeID + ParsePostID = types.ParsePostID + NewPost = types.NewPost + NewMsgAnswerPoll = types.NewMsgAnswerPoll + NewMsgCreatePost = types.NewMsgCreatePost + NewMsgEditPost = types.NewMsgEditPost + PostStoreKey = types.PostStoreKey + PostCommentsStoreKey = types.PostCommentsStoreKey + PostReactionsStoreKey = types.PostReactionsStoreKey + ReactionsStoreKey = types.ReactionsStoreKey + PollAnswersStoreKey = types.PollAnswersStoreKey + DefaultQueryPostsParams = types.DefaultQueryPostsParams RegisterCodec = types.RegisterCodec - PostStoreKey = models.PostStoreKey - PostCommentsStoreKey = models.PostCommentsStoreKey - PostReactionsStoreKey = models.PostReactionsStoreKey - ReactionsStoreKey = models.ReactionsStoreKey - PollAnswersStoreKey = models.PollAnswersStoreKey - RegisterModelsCodec = models.RegisterModelsCodec - ComputeID = models.ComputeID - ParsePostID = models.ParsePostID - NewPost = models.NewPost - NewPostResponse = models.NewPostResponse + NewMsgAddPostReaction = types.NewMsgAddPostReaction + NewMsgRemovePostReaction = types.NewMsgRemovePostReaction // variable aliases - MsgsCodec = msgs.MsgsCodec - RandomMimeTypes = simulation.RandomMimeTypes - RandomHosts = simulation.RandomHosts - ModuleCdc = types.ModuleCdc - ModelsCdc = models.ModelsCdc Sha256RegEx = common.Sha256RegEx HashtagRegEx = common.HashtagRegEx ShortCodeRegEx = common.ShortCodeRegEx @@ -155,31 +146,30 @@ var ( PostReactionsStorePrefix = common.PostReactionsStorePrefix ReactionsStorePrefix = common.ReactionsStorePrefix PollAnswersStorePrefix = common.PollAnswersStorePrefix + RandomMimeTypes = simulation.RandomMimeTypes + RandomHosts = simulation.RandomHosts + ModuleCdc = types.ModuleCdc ) type ( - PostReaction = reactions.PostReaction - PostReactions = reactions.PostReactions - Reaction = reactions.Reaction - Reactions = reactions.Reactions - MsgAddPostReaction = msgs.MsgAddPostReaction - MsgRemovePostReaction = msgs.MsgRemovePostReaction - MsgAnswerPoll = msgs.MsgAnswerPoll - MsgCreatePost = msgs.MsgCreatePost - MsgEditPost = msgs.MsgEditPost - MsgRegisterReaction = msgs.MsgRegisterReaction Keeper = keeper.Keeper PostData = simulation.PostData PostReactionData = simulation.PostReactionData ReactionData = simulation.ReactionData - QueryPostsParams = types.QueryPostsParams + PostQueryResponse = types.PostQueryResponse + MsgRegisterReaction = types.MsgRegisterReaction GenesisState = types.GenesisState - PollAnswersQueryResponse = models.PollAnswersQueryResponse - PostID = models.PostID - PostIDs = models.PostIDs - Post = models.Post - Posts = models.Posts - PostQueryResponse = models.PostQueryResponse + PostID = types.PostID + PostIDs = types.PostIDs + Post = types.Post + Posts = types.Posts + MsgAnswerPoll = types.MsgAnswerPoll + MsgCreatePost = types.MsgCreatePost + MsgEditPost = types.MsgEditPost + QueryPostsParams = types.QueryPostsParams + MsgAddPostReaction = types.MsgAddPostReaction + MsgRemovePostReaction = types.MsgRemovePostReaction + PollAnswersQueryResponse = types.PollAnswersQueryResponse PostMedia = common.PostMedia PostMedias = common.PostMedias OptionalData = common.OptionalData @@ -190,4 +180,8 @@ type ( PollData = polls.PollData UserAnswer = polls.UserAnswer UserAnswers = polls.UserAnswers + PostReaction = reactions.PostReaction + PostReactions = reactions.PostReactions + Reaction = reactions.Reaction + Reactions = reactions.Reactions ) diff --git a/x/posts/internal/keeper/common_test.go b/x/posts/internal/keeper/common_test.go index d594181083..be6f911245 100644 --- a/x/posts/internal/keeper/common_test.go +++ b/x/posts/internal/keeper/common_test.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/desmos-labs/desmos/x/posts/internal/keeper" "github.com/desmos-labs/desmos/x/posts/internal/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/common" abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/tendermint/crypto" "github.com/tendermint/tendermint/libs/log" diff --git a/x/posts/internal/types/alias.go b/x/posts/internal/types/alias.go index bfde0600ca..c47d0cb7a7 100644 --- a/x/posts/internal/types/alias.go +++ b/x/posts/internal/types/alias.go @@ -5,11 +5,9 @@ package types // based on functionality in github.com/rigelrozanski/multitool import ( - "github.com/desmos-labs/desmos/x/posts/internal/types/models" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" - "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" + "github.com/desmos-labs/desmos/x/posts/internal/types/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/reactions" ) const ( @@ -38,16 +36,6 @@ const ( var ( // functions aliases - ComputeID = models.ComputeID - ParsePostID = models.ParsePostID - NewPost = models.NewPost - NewPostResponse = models.NewPostResponse - PostStoreKey = models.PostStoreKey - PostCommentsStoreKey = models.PostCommentsStoreKey - PostReactionsStoreKey = models.PostReactionsStoreKey - ReactionsStoreKey = models.ReactionsStoreKey - PollAnswersStoreKey = models.PollAnswersStoreKey - RegisterModelsCodec = models.RegisterModelsCodec NewPostMedia = common.NewPostMedia ValidateURI = common.ValidateURI NewPostMedias = common.NewPostMedias @@ -64,16 +52,8 @@ var ( NewReaction = reactions.NewReaction IsEmoji = reactions.IsEmoji NewReactions = reactions.NewReactions - NewMsgAddPostReaction = msgs.NewMsgAddPostReaction - NewMsgRemovePostReaction = msgs.NewMsgRemovePostReaction - NewMsgAnswerPoll = msgs.NewMsgAnswerPoll - NewMsgCreatePost = msgs.NewMsgCreatePost - NewMsgEditPost = msgs.NewMsgEditPost - NewMsgRegisterReaction = msgs.NewMsgRegisterReaction - RegisterMessagesCodec = msgs.RegisterMessagesCodec // variable aliases - ModelsCdc = models.ModelsCdc Sha256RegEx = common.Sha256RegEx HashtagRegEx = common.HashtagRegEx ShortCodeRegEx = common.ShortCodeRegEx @@ -84,34 +64,21 @@ var ( PostReactionsStorePrefix = common.PostReactionsStorePrefix ReactionsStorePrefix = common.ReactionsStorePrefix PollAnswersStorePrefix = common.PollAnswersStorePrefix - MsgsCodec = msgs.MsgsCodec ) type ( - PostMedia = common.PostMedia - PostMedias = common.PostMedias - OptionalData = common.OptionalData - KeyValue = common.KeyValue - AnswerID = polls.AnswerID - PollAnswer = polls.PollAnswer - PollAnswers = polls.PollAnswers - PollData = polls.PollData - UserAnswer = polls.UserAnswer - UserAnswers = polls.UserAnswers - PostReaction = reactions.PostReaction - PostReactions = reactions.PostReactions - Reaction = reactions.Reaction - Reactions = reactions.Reactions - MsgAddPostReaction = msgs.MsgAddPostReaction - MsgRemovePostReaction = msgs.MsgRemovePostReaction - MsgAnswerPoll = msgs.MsgAnswerPoll - MsgCreatePost = msgs.MsgCreatePost - MsgEditPost = msgs.MsgEditPost - MsgRegisterReaction = msgs.MsgRegisterReaction - PostID = models.PostID - PostIDs = models.PostIDs - Post = models.Post - Posts = models.Posts - PostQueryResponse = models.PostQueryResponse - PollAnswersQueryResponse = models.PollAnswersQueryResponse + PostMedia = common.PostMedia + PostMedias = common.PostMedias + OptionalData = common.OptionalData + KeyValue = common.KeyValue + AnswerID = polls.AnswerID + PollAnswer = polls.PollAnswer + PollAnswers = polls.PollAnswers + PollData = polls.PollData + UserAnswer = polls.UserAnswer + UserAnswers = polls.UserAnswers + PostReaction = reactions.PostReaction + PostReactions = reactions.PostReactions + Reaction = reactions.Reaction + Reactions = reactions.Reactions ) diff --git a/x/posts/internal/types/codec.go b/x/posts/internal/types/codec.go index 251e823e88..b8eccdcde8 100644 --- a/x/posts/internal/types/codec.go +++ b/x/posts/internal/types/codec.go @@ -12,6 +12,10 @@ func init() { } func RegisterCodec(cdc *codec.Codec) { - RegisterModelsCodec(cdc) - RegisterMessagesCodec(cdc) + cdc.RegisterConcrete(MsgCreatePost{}, "desmos/MsgCreatePost", nil) + cdc.RegisterConcrete(MsgEditPost{}, "desmos/MsgEditPost", nil) + cdc.RegisterConcrete(MsgAddPostReaction{}, "desmos/MsgAddPostReaction", nil) + cdc.RegisterConcrete(MsgRemovePostReaction{}, "desmos/MsgRemovePostReaction", nil) + cdc.RegisterConcrete(MsgAnswerPoll{}, "desmos/MsgAnswerPoll", nil) + cdc.RegisterConcrete(MsgRegisterReaction{}, "desmos/MsgRegisterReaction", nil) } diff --git a/x/posts/internal/types/models/common/keys.go b/x/posts/internal/types/common/keys.go similarity index 100% rename from x/posts/internal/types/models/common/keys.go rename to x/posts/internal/types/common/keys.go diff --git a/x/posts/internal/types/models/common/post_media.go b/x/posts/internal/types/common/post_media.go similarity index 100% rename from x/posts/internal/types/models/common/post_media.go rename to x/posts/internal/types/common/post_media.go diff --git a/x/posts/internal/types/models/common/post_media_test.go b/x/posts/internal/types/common/post_media_test.go similarity index 99% rename from x/posts/internal/types/models/common/post_media_test.go rename to x/posts/internal/types/common/post_media_test.go index 4e21f91981..559f79bb39 100644 --- a/x/posts/internal/types/models/common/post_media_test.go +++ b/x/posts/internal/types/common/post_media_test.go @@ -5,7 +5,7 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/common" "github.com/stretchr/testify/require" ) diff --git a/x/posts/internal/types/models/common/post_optional_data.go b/x/posts/internal/types/common/post_optional_data.go similarity index 100% rename from x/posts/internal/types/models/common/post_optional_data.go rename to x/posts/internal/types/common/post_optional_data.go diff --git a/x/posts/internal/types/models/common/reactions.go b/x/posts/internal/types/common/reactions.go similarity index 100% rename from x/posts/internal/types/models/common/reactions.go rename to x/posts/internal/types/common/reactions.go diff --git a/x/posts/internal/types/models/keys.go b/x/posts/internal/types/keys.go similarity index 98% rename from x/posts/internal/types/models/keys.go rename to x/posts/internal/types/keys.go index e723fb5164..a56e4cdcb0 100644 --- a/x/posts/internal/types/models/keys.go +++ b/x/posts/internal/types/keys.go @@ -1,4 +1,4 @@ -package models +package types // PostStoreKey turns an id to a key used to store a post into the posts store // nolint: interfacer diff --git a/x/posts/internal/types/models/alias.go b/x/posts/internal/types/models/alias.go deleted file mode 100644 index 799786c319..0000000000 --- a/x/posts/internal/types/models/alias.go +++ /dev/null @@ -1,84 +0,0 @@ -package models - -// nolint -// autogenerated code using github.com/haasted/alias-generator. -// based on functionality in github.com/rigelrozanski/multitool - -import ( - "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" -) - -const ( - ModuleName = common.ModuleName - RouterKey = common.RouterKey - StoreKey = common.StoreKey - MaxPostMessageLength = common.MaxPostMessageLength - MaxOptionalDataFieldsNumber = common.MaxOptionalDataFieldsNumber - MaxOptionalDataFieldValueLength = common.MaxOptionalDataFieldValueLength - ActionCreatePost = common.ActionCreatePost - ActionEditPost = common.ActionEditPost - ActionAnswerPoll = common.ActionAnswerPoll - ActionAddPostReaction = common.ActionAddPostReaction - ActionRemovePostReaction = common.ActionRemovePostReaction - ActionRegisterReaction = common.ActionRegisterReaction - QuerierRoute = common.QuerierRoute - QueryPost = common.QueryPost - QueryPosts = common.QueryPosts - QueryPollAnswers = common.QueryPollAnswers - QueryRegisteredReactions = common.QueryRegisteredReactions - PostSortByCreationDate = common.PostSortByCreationDate - PostSortByID = common.PostSortByID - PostSortOrderAscending = common.PostSortOrderAscending - PostSortOrderDescending = common.PostSortOrderDescending -) - -var ( - // functions aliases - NewPostMedia = common.NewPostMedia - ValidateURI = common.ValidateURI - NewPostMedias = common.NewPostMedias - GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue - ParseAnswerID = polls.ParseAnswerID - NewPollAnswer = polls.NewPollAnswer - NewPollAnswers = polls.NewPollAnswers - NewPollData = polls.NewPollData - ArePollDataEquals = polls.ArePollDataEquals - NewUserAnswer = polls.NewUserAnswer - NewUserAnswers = polls.NewUserAnswers - NewPostReaction = reactions.NewPostReaction - NewPostReactions = reactions.NewPostReactions - NewReaction = reactions.NewReaction - IsEmoji = reactions.IsEmoji - NewReactions = reactions.NewReactions - - // variable aliases - Sha256RegEx = common.Sha256RegEx - HashtagRegEx = common.HashtagRegEx - ShortCodeRegEx = common.ShortCodeRegEx - URIRegEx = common.URIRegEx - ModuleAddress = common.ModuleAddress - PostStorePrefix = common.PostStorePrefix - PostCommentsStorePrefix = common.PostCommentsStorePrefix - PostReactionsStorePrefix = common.PostReactionsStorePrefix - ReactionsStorePrefix = common.ReactionsStorePrefix - PollAnswersStorePrefix = common.PollAnswersStorePrefix -) - -type ( - PostMedia = common.PostMedia - PostMedias = common.PostMedias - OptionalData = common.OptionalData - KeyValue = common.KeyValue - AnswerID = polls.AnswerID - PollAnswer = polls.PollAnswer - PollAnswers = polls.PollAnswers - PollData = polls.PollData - UserAnswer = polls.UserAnswer - UserAnswers = polls.UserAnswers - PostReaction = reactions.PostReaction - PostReactions = reactions.PostReactions - Reaction = reactions.Reaction - Reactions = reactions.Reactions -) diff --git a/x/posts/internal/types/models/codec.go b/x/posts/internal/types/models/codec.go deleted file mode 100644 index 3ca3b0f17c..0000000000 --- a/x/posts/internal/types/models/codec.go +++ /dev/null @@ -1,17 +0,0 @@ -package models - -import ( - "github.com/cosmos/cosmos-sdk/codec" -) - -// ModelsCdc is the codec -var ModelsCdc = codec.New() - -func init() { - RegisterModelsCodec(ModelsCdc) -} - -// RegisterModelsCodec registers concrete types on the Amino codec -func RegisterModelsCodec(cdc *codec.Codec) { - -} diff --git a/x/posts/internal/types/msgs/msg_reactions.go b/x/posts/internal/types/msg_reactions.go similarity index 80% rename from x/posts/internal/types/msgs/msg_reactions.go rename to x/posts/internal/types/msg_reactions.go index e67fbd722d..1af93b5f67 100644 --- a/x/posts/internal/types/msgs/msg_reactions.go +++ b/x/posts/internal/types/msg_reactions.go @@ -1,11 +1,10 @@ -package msgs +package types import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" ) // MsgRegisterReaction represents the message that must be used when wanting @@ -28,10 +27,10 @@ func NewMsgRegisterReaction(creator sdk.AccAddress, shortCode, value, subspace s } // Route should return the name of the module -func (msg MsgRegisterReaction) Route() string { return models.RouterKey } +func (msg MsgRegisterReaction) Route() string { return RouterKey } // Type should return the action -func (msg MsgRegisterReaction) Type() string { return models.ActionRegisterReaction } +func (msg MsgRegisterReaction) Type() string { return ActionRegisterReaction } // ValidateBasic runs stateless checks on the message func (msg MsgRegisterReaction) ValidateBasic() error { @@ -39,15 +38,15 @@ func (msg MsgRegisterReaction) ValidateBasic() error { return sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, fmt.Sprintf("Invalid creator address: %s", msg.Creator)) } - if !models.ShortCodeRegEx.MatchString(msg.ShortCode) { + if !ShortCodeRegEx.MatchString(msg.ShortCode) { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "The specified shortcode is not valid. To be valid it must only contains a-z, 0-9, - and _ and must start and end with a :") } - if !models.URIRegEx.MatchString(msg.Value) { + if !URIRegEx.MatchString(msg.Value) { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL") } - if !models.Sha256RegEx.MatchString(msg.Subspace) { + if !Sha256RegEx.MatchString(msg.Subspace) { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction subspace must be a valid sha-256 hash") } @@ -56,7 +55,7 @@ func (msg MsgRegisterReaction) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgRegisterReaction) GetSignBytes() []byte { - return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required diff --git a/x/posts/internal/types/msgs/msg_reactions_test.go b/x/posts/internal/types/msg_reactions_test.go similarity index 80% rename from x/posts/internal/types/msgs/msg_reactions_test.go rename to x/posts/internal/types/msg_reactions_test.go index 255e14044d..1f1a57d180 100644 --- a/x/posts/internal/types/msgs/msg_reactions_test.go +++ b/x/posts/internal/types/msg_reactions_test.go @@ -1,16 +1,16 @@ -package msgs_test +package types_test import ( "fmt" + "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" - "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" "github.com/stretchr/testify/require" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" ) -var msgRegisterReaction = msgs.NewMsgRegisterReaction(testOwner, ":smile:", "https://smile.jpg", +var msgRegisterReaction = types.NewMsgRegisterReaction(testOwner, ":smile:", "https://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e") func TestMsgRegisterReaction_Route(t *testing.T) { @@ -26,53 +26,53 @@ func TestMsgRegisterReaction_Type(t *testing.T) { func TestMsgRegisterReaction_ValidateBasic(t *testing.T) { tests := []struct { name string - msg msgs.MsgRegisterReaction + msg types.MsgRegisterReaction error error }{ { name: "Invalid creator returns error", - msg: msgs.NewMsgRegisterReaction(nil, ":smile:", "https://smile.jpg", + msg: types.NewMsgRegisterReaction(nil, ":smile:", "https://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, fmt.Sprintf("Invalid creator address: %s", "")), }, { name: "Empty short code returns error", - msg: msgs.NewMsgRegisterReaction(testOwner, "", "https://smile.jpg", + msg: types.NewMsgRegisterReaction(testOwner, "", "https://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "The specified shortcode is not valid. To be valid it must only contains a-z, 0-9, - and _ and must start and end with a :"), }, { name: "Invalid short code returns error", - msg: msgs.NewMsgRegisterReaction(testOwner, ":smile", "https://smile.jpg", + msg: types.NewMsgRegisterReaction(testOwner, ":smile", "https://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "The specified shortcode is not valid. To be valid it must only contains a-z, 0-9, - and _ and must start and end with a :"), }, { name: "Empty value returns error", - msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "", + msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL"), }, { name: "Invalid value returns error (url)", - msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "htp://smile.jpg", + msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "htp://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL"), }, { name: "Invalid value returns error (unicode)", - msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "U+1", + msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "U+1", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL"), }, { name: "Valid emoji value returns no error", - msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "💙", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), + msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "💙", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL"), }, { name: "Invalid subspace returns error", - msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "https://smile.jpg", + msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "https://smile.jpg", "1234"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction subspace must be a valid sha-256 hash"), }, diff --git a/x/posts/internal/types/msgs/msgs.go b/x/posts/internal/types/msgs.go similarity index 78% rename from x/posts/internal/types/msgs/msgs.go rename to x/posts/internal/types/msgs.go index 6520eae540..906c3fb963 100644 --- a/x/posts/internal/types/msgs/msgs.go +++ b/x/posts/internal/types/msgs.go @@ -1,4 +1,4 @@ -package msgs +package types import ( "encoding/json" @@ -8,7 +8,6 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" ) // ---------------------- @@ -17,21 +16,21 @@ import ( // MsgCreatePost defines a CreatePost message type MsgCreatePost struct { - ParentID models.PostID `json:"parent_id" yaml:"parent_id"` + ParentID PostID `json:"parent_id" yaml:"parent_id"` Message string `json:"message" yaml:"message"` AllowsComments bool `json:"allows_comments" yaml:"allows_comments"` Subspace string `json:"subspace" yaml:"subspace"` OptionalData map[string]string `json:"optional_data,omitempty" yaml:"optional_data,omitempty"` Creator sdk.AccAddress `json:"creator" yaml:"creator"` CreationDate time.Time `json:"creation_date" yaml:"creation_date"` - Medias models.PostMedias `json:"medias,omitempty" yaml:"medias,omitempty"` - PollData *models.PollData `json:"poll_data,omitempty" yaml:"poll_data,omitempty"` + Medias PostMedias `json:"medias,omitempty" yaml:"medias,omitempty"` + PollData *PollData `json:"poll_data,omitempty" yaml:"poll_data,omitempty"` } // NewMsgCreatePost is a constructor function for MsgCreatePost -func NewMsgCreatePost(message string, parentID models.PostID, allowsComments bool, subspace string, +func NewMsgCreatePost(message string, parentID PostID, allowsComments bool, subspace string, optionalData map[string]string, owner sdk.AccAddress, creationDate time.Time, - medias models.PostMedias, pollData *models.PollData) MsgCreatePost { + medias PostMedias, pollData *PollData) MsgCreatePost { return MsgCreatePost{ Message: message, ParentID: parentID, @@ -46,10 +45,10 @@ func NewMsgCreatePost(message string, parentID models.PostID, allowsComments boo } // Route should return the name of the module -func (msg MsgCreatePost) Route() string { return models.RouterKey } +func (msg MsgCreatePost) Route() string { return RouterKey } // Type should return the action -func (msg MsgCreatePost) Type() string { return models.ActionCreatePost } +func (msg MsgCreatePost) Type() string { return ActionCreatePost } // ValidateBasic runs stateless checks on the message func (msg MsgCreatePost) ValidateBasic() error { @@ -61,26 +60,26 @@ func (msg MsgCreatePost) ValidateBasic() error { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post message, medias or poll are required and cannot be all blank or empty") } - if len(msg.Message) > models.MaxPostMessageLength { + if len(msg.Message) > MaxPostMessageLength { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, - fmt.Sprintf("Post message cannot exceed %d characters", models.MaxPostMessageLength)) + fmt.Sprintf("Post message cannot exceed %d characters", MaxPostMessageLength)) } - if !models.Sha256RegEx.MatchString(msg.Subspace) { + if !Sha256RegEx.MatchString(msg.Subspace) { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post subspace must be a valid sha-256 hash") } - if len(msg.OptionalData) > models.MaxOptionalDataFieldsNumber { + if len(msg.OptionalData) > MaxOptionalDataFieldsNumber { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, fmt.Sprintf("Post optional data cannot be longer than %d fields", - models.MaxOptionalDataFieldsNumber)) + MaxOptionalDataFieldsNumber)) } for key, value := range msg.OptionalData { - if len(value) > models.MaxOptionalDataFieldValueLength { + if len(value) > MaxOptionalDataFieldValueLength { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, fmt.Sprintf("Post optional data value lengths cannot be longer than %d. %s exceeds the limit", - models.MaxOptionalDataFieldValueLength, key)) + MaxOptionalDataFieldValueLength, key)) } } @@ -112,7 +111,7 @@ func (msg MsgCreatePost) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgCreatePost) GetSignBytes() []byte { - return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required @@ -133,14 +132,14 @@ func (msg MsgCreatePost) MarshalJSON() ([]byte, error) { // MsgEditPost defines the EditPostMessage message type MsgEditPost struct { - PostID models.PostID `json:"post_id" yaml:"post_id"` + PostID PostID `json:"post_id" yaml:"post_id"` Message string `json:"message" yaml:"message"` Editor sdk.AccAddress `json:"editor" yaml:"editor"` EditDate time.Time `json:"edit_date" yaml:"edit_date"` } // NewMsgEditPost is the constructor function for MsgEditPost -func NewMsgEditPost(id models.PostID, message string, owner sdk.AccAddress, editDate time.Time) MsgEditPost { +func NewMsgEditPost(id PostID, message string, owner sdk.AccAddress, editDate time.Time) MsgEditPost { return MsgEditPost{ PostID: id, Message: message, @@ -150,10 +149,10 @@ func NewMsgEditPost(id models.PostID, message string, owner sdk.AccAddress, edit } // Route should return the name of the module -func (msg MsgEditPost) Route() string { return models.RouterKey } +func (msg MsgEditPost) Route() string { return RouterKey } // Type should return the action -func (msg MsgEditPost) Type() string { return models.ActionEditPost } +func (msg MsgEditPost) Type() string { return ActionEditPost } // ValidateBasic runs stateless checks on the message func (msg MsgEditPost) ValidateBasic() error { @@ -182,7 +181,7 @@ func (msg MsgEditPost) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgEditPost) GetSignBytes() []byte { - return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required diff --git a/x/posts/internal/types/msgs/codec.go b/x/posts/internal/types/msgs/codec.go deleted file mode 100644 index 23c8ca1bf3..0000000000 --- a/x/posts/internal/types/msgs/codec.go +++ /dev/null @@ -1,22 +0,0 @@ -package msgs - -import ( - "github.com/cosmos/cosmos-sdk/codec" -) - -// MsgsCodec is the codec -var MsgsCodec = codec.New() - -func init() { - RegisterMessagesCodec(MsgsCodec) -} - -// RegisterMessagesCodec registers concrete types on the Amino codec -func RegisterMessagesCodec(cdc *codec.Codec) { - cdc.RegisterConcrete(MsgCreatePost{}, "desmos/MsgCreatePost", nil) - cdc.RegisterConcrete(MsgEditPost{}, "desmos/MsgEditPost", nil) - cdc.RegisterConcrete(MsgAddPostReaction{}, "desmos/MsgAddPostReaction", nil) - cdc.RegisterConcrete(MsgRemovePostReaction{}, "desmos/MsgRemovePostReaction", nil) - cdc.RegisterConcrete(MsgAnswerPoll{}, "desmos/MsgAnswerPoll", nil) - cdc.RegisterConcrete(MsgRegisterReaction{}, "desmos/MsgRegisterReaction", nil) -} diff --git a/x/posts/internal/types/msgs/msgs_polls.go b/x/posts/internal/types/msgs_polls.go similarity index 69% rename from x/posts/internal/types/msgs/msgs_polls.go rename to x/posts/internal/types/msgs_polls.go index a22bc2efeb..6d5cb36fa3 100644 --- a/x/posts/internal/types/msgs/msgs_polls.go +++ b/x/posts/internal/types/msgs_polls.go @@ -1,11 +1,10 @@ -package msgs +package types import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" ) // ---------------------- @@ -14,13 +13,13 @@ import ( // MsgAnswerPoll defines the AnswerPoll message type MsgAnswerPoll struct { - PostID models.PostID `json:"post_id" yaml:"post_id"` - UserAnswers []models.AnswerID `json:"answers" yaml:"answers"` - Answerer sdk.AccAddress `json:"answerer" yaml:"answerer"` + PostID PostID `json:"post_id" yaml:"post_id"` + UserAnswers []AnswerID `json:"answers" yaml:"answers"` + Answerer sdk.AccAddress `json:"answerer" yaml:"answerer"` } // NewMsgAnswerPoll is the constructor function for MsgAnswerPoll -func NewMsgAnswerPoll(id models.PostID, providedAnswers []models.AnswerID, answerer sdk.AccAddress) MsgAnswerPoll { +func NewMsgAnswerPoll(id PostID, providedAnswers []AnswerID, answerer sdk.AccAddress) MsgAnswerPoll { return MsgAnswerPoll{ PostID: id, UserAnswers: providedAnswers, @@ -29,10 +28,10 @@ func NewMsgAnswerPoll(id models.PostID, providedAnswers []models.AnswerID, answe } // Route should return the name of the module -func (msg MsgAnswerPoll) Route() string { return models.RouterKey } +func (msg MsgAnswerPoll) Route() string { return RouterKey } // Type should return the action -func (msg MsgAnswerPoll) Type() string { return models.ActionAnswerPoll } +func (msg MsgAnswerPoll) Type() string { return ActionAnswerPoll } // ValidateBasic runs stateless checks on the message func (msg MsgAnswerPoll) ValidateBasic() error { @@ -53,7 +52,7 @@ func (msg MsgAnswerPoll) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgAnswerPoll) GetSignBytes() []byte { - return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required diff --git a/x/posts/internal/types/msgs/msgs_polls_test.go b/x/posts/internal/types/msgs_polls_test.go similarity index 80% rename from x/posts/internal/types/msgs/msgs_polls_test.go rename to x/posts/internal/types/msgs_polls_test.go index fdf627c13c..5c911ac289 100644 --- a/x/posts/internal/types/msgs/msgs_polls_test.go +++ b/x/posts/internal/types/msgs_polls_test.go @@ -1,11 +1,10 @@ -package msgs_test +package types_test import ( + "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" - "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" "github.com/stretchr/testify/require" ) @@ -13,7 +12,7 @@ import ( // --- MsgAnswerPoll // ---------------------- -var msgAnswerPollPost = msgs.NewMsgAnswerPoll(id, []models.AnswerID{1, 2}, testOwner) +var msgAnswerPollPost = types.NewMsgAnswerPoll(id, []types.AnswerID{1, 2}, testOwner) func TestMsgAnswerPollPost_Route(t *testing.T) { actual := msgAnswerPollPost.Route() @@ -28,27 +27,27 @@ func TestMsgAnswerPollPost_Type(t *testing.T) { func TestMsgAnswerPollPost_ValidateBasic(t *testing.T) { tests := []struct { name string - msg msgs.MsgAnswerPoll + msg types.MsgAnswerPoll error error }{ { name: "Invalid post id", - msg: msgs.NewMsgAnswerPoll("", []models.AnswerID{1, 2}, msgAnswerPollPost.Answerer), + msg: types.NewMsgAnswerPoll("", []types.AnswerID{1, 2}, msgAnswerPollPost.Answerer), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid post id: "), }, { name: "Invalid answerer address", - msg: msgs.NewMsgAnswerPoll(id, []models.AnswerID{1, 2}, nil), + msg: types.NewMsgAnswerPoll(id, []types.AnswerID{1, 2}, nil), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, "Invalid answerer address: "), }, { name: "Returns error when no answer is provided", - msg: msgs.NewMsgAnswerPoll(id, []models.AnswerID{}, msgAnswerPollPost.Answerer), + msg: types.NewMsgAnswerPoll(id, []types.AnswerID{}, msgAnswerPollPost.Answerer), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Provided answers must contains at least one answer"), }, { name: "Valid message returns no error", - msg: msgs.NewMsgAnswerPoll(id, []models.AnswerID{1, 2}, msgAnswerPollPost.Answerer), + msg: types.NewMsgAnswerPoll(id, []types.AnswerID{1, 2}, msgAnswerPollPost.Answerer), }, } diff --git a/x/posts/internal/types/msgs/msgs_post_reactions.go b/x/posts/internal/types/msgs_post_reactions.go similarity index 77% rename from x/posts/internal/types/msgs/msgs_post_reactions.go rename to x/posts/internal/types/msgs_post_reactions.go index 475eddb4a3..09a28e1a3d 100644 --- a/x/posts/internal/types/msgs/msgs_post_reactions.go +++ b/x/posts/internal/types/msgs_post_reactions.go @@ -1,4 +1,4 @@ -package msgs +package types import ( "fmt" @@ -6,7 +6,6 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" emoji "github.com/desmos-labs/Go-Emoji-Utils" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" ) // ---------------------- @@ -15,13 +14,13 @@ import ( // MsgAddPostReaction defines the message to be used to add a reaction to a post type MsgAddPostReaction struct { - PostID models.PostID `json:"post_id" yaml:"post_id"` // Id of the post to react to + PostID PostID `json:"post_id" yaml:"post_id"` // Id of the post to react to Reaction string `json:"reaction" yaml:"reaction"` // Reaction of the reaction User sdk.AccAddress `json:"user" yaml:"user"` // Address of the user reacting to the post } // NewMsgAddPostReaction is a constructor function for MsgAddPostReaction -func NewMsgAddPostReaction(postID models.PostID, value string, user sdk.AccAddress) MsgAddPostReaction { +func NewMsgAddPostReaction(postID PostID, value string, user sdk.AccAddress) MsgAddPostReaction { return MsgAddPostReaction{ PostID: postID, User: user, @@ -30,10 +29,10 @@ func NewMsgAddPostReaction(postID models.PostID, value string, user sdk.AccAddre } // Route should return the name of the module -func (msg MsgAddPostReaction) Route() string { return models.RouterKey } +func (msg MsgAddPostReaction) Route() string { return RouterKey } // Type should return the action -func (msg MsgAddPostReaction) Type() string { return models.ActionAddPostReaction } +func (msg MsgAddPostReaction) Type() string { return ActionAddPostReaction } // ValidateBasic runs stateless checks on the message func (msg MsgAddPostReaction) ValidateBasic() error { @@ -46,7 +45,7 @@ func (msg MsgAddPostReaction) ValidateBasic() error { } _, err := emoji.LookupEmoji(msg.Reaction) - if !models.ShortCodeRegEx.MatchString(msg.Reaction) && err != nil { + if !ShortCodeRegEx.MatchString(msg.Reaction) && err != nil { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Reaction value must be an emoji or an emoji shortcode."+ "If a shortcode is provided, it must only contains a-z, 0-9, - and _ and must start and end with a :") } @@ -56,7 +55,7 @@ func (msg MsgAddPostReaction) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgAddPostReaction) GetSignBytes() []byte { - return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required @@ -71,13 +70,13 @@ func (msg MsgAddPostReaction) GetSigners() []sdk.AccAddress { // MsgRemovePostReaction defines the message to be used when wanting to remove // an existing reaction from a specific user having a specific value type MsgRemovePostReaction struct { - PostID models.PostID `json:"post_id" yaml:"post_id"` // Id of the post to unlike + PostID PostID `json:"post_id" yaml:"post_id"` // Id of the post to unlike Reaction string `json:"reaction" yaml:"reaction"` // Reaction of the reaction to be removed User sdk.AccAddress `json:"user" yaml:"user"` // Address of the user that has previously liked the post } // MsgUnlikePostPost is the constructor of MsgRemovePostReaction -func NewMsgRemovePostReaction(postID models.PostID, user sdk.AccAddress, value string) MsgRemovePostReaction { +func NewMsgRemovePostReaction(postID PostID, user sdk.AccAddress, value string) MsgRemovePostReaction { return MsgRemovePostReaction{ PostID: postID, User: user, @@ -86,10 +85,10 @@ func NewMsgRemovePostReaction(postID models.PostID, user sdk.AccAddress, value s } // Route should return the name of the module -func (msg MsgRemovePostReaction) Route() string { return models.RouterKey } +func (msg MsgRemovePostReaction) Route() string { return RouterKey } // Type should return the action -func (msg MsgRemovePostReaction) Type() string { return models.ActionRemovePostReaction } +func (msg MsgRemovePostReaction) Type() string { return ActionRemovePostReaction } // ValidateBasic runs stateless checks on the message func (msg MsgRemovePostReaction) ValidateBasic() error { @@ -102,7 +101,7 @@ func (msg MsgRemovePostReaction) ValidateBasic() error { } _, err := emoji.LookupEmoji(msg.Reaction) - if !models.ShortCodeRegEx.MatchString(msg.Reaction) && err != nil { + if !ShortCodeRegEx.MatchString(msg.Reaction) && err != nil { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Reaction value must be an emoji or an emoji shortcode. "+ "If a shortcode is provided, it must only contains a-z, 0-9, - and _ and must start and end with a :") } @@ -112,7 +111,7 @@ func (msg MsgRemovePostReaction) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgRemovePostReaction) GetSignBytes() []byte { - return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required diff --git a/x/posts/internal/types/msgs/msgs_post_reactions_test.go b/x/posts/internal/types/msgs_post_reactions_test.go similarity index 80% rename from x/posts/internal/types/msgs/msgs_post_reactions_test.go rename to x/posts/internal/types/msgs_post_reactions_test.go index 262a5f6b36..a2be3ffe58 100644 --- a/x/posts/internal/types/msgs/msgs_post_reactions_test.go +++ b/x/posts/internal/types/msgs_post_reactions_test.go @@ -1,12 +1,11 @@ -package msgs_test +package types_test import ( + "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" emoji2 "github.com/desmos-labs/Go-Emoji-Utils" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" - "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" "github.com/stretchr/testify/require" ) @@ -17,7 +16,7 @@ import ( func TestShortCodeRegEx(t *testing.T) { for _, emoji := range emoji2.Emojis { for _, shortcode := range emoji.Shortcodes { - res := models.ShortCodeRegEx.MatchString(shortcode) + res := types.ShortCodeRegEx.MatchString(shortcode) if !res { println(shortcode) } @@ -26,7 +25,7 @@ func TestShortCodeRegEx(t *testing.T) { } } -var msgPostReaction = msgs.NewMsgAddPostReaction(id, "like", testOwner) +var msgPostReaction = types.NewMsgAddPostReaction(id, "like", testOwner) func TestMsgAddPostReaction_Route(t *testing.T) { actual := msgPostReaction.Route() @@ -41,32 +40,32 @@ func TestMsgAddPostReaction_Type(t *testing.T) { func TestMsgAddPostReaction_ValidateBasic(t *testing.T) { tests := []struct { name string - msg msgs.MsgAddPostReaction + msg types.MsgAddPostReaction error error }{ { name: "Invalid post id returns error", - msg: msgs.NewMsgAddPostReaction("", ":like:", testOwner), + msg: types.NewMsgAddPostReaction("", ":like:", testOwner), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid post id: "), }, { name: "Invalid user returns error", - msg: msgs.NewMsgAddPostReaction(id, ":like:", nil), + msg: types.NewMsgAddPostReaction(id, ":like:", nil), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, "Invalid user address: "), }, { name: "Invalid value returns error", - msg: msgs.NewMsgAddPostReaction(id, "like", testOwner), + msg: types.NewMsgAddPostReaction(id, "like", testOwner), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Reaction value must be an emoji or an emoji shortcode.If a shortcode is provided, it must only contains a-z, 0-9, - and _ and must start and end with a :"), }, { name: "Valid message returns no error (with shortcode)", - msg: msgs.NewMsgAddPostReaction(id, ":like:", testOwner), + msg: types.NewMsgAddPostReaction(id, ":like:", testOwner), error: nil, }, { name: "Valid message returns no error (with emoji)", - msg: msgs.NewMsgAddPostReaction(id, "🤩", testOwner), + msg: types.NewMsgAddPostReaction(id, "🤩", testOwner), error: nil, }, } @@ -99,7 +98,7 @@ func TestMsgAddPostReaction_GetSigners(t *testing.T) { // --- MsgRemovePostReaction // ---------------------- -var msgUnlikePost = msgs.NewMsgRemovePostReaction(id, testOwner, "like") +var msgUnlikePost = types.NewMsgRemovePostReaction(id, testOwner, "like") func TestMsgRemovePostReaction_Route(t *testing.T) { actual := msgUnlikePost.Route() @@ -114,33 +113,33 @@ func TestMsgRemovePostReaction_Type(t *testing.T) { func TestMsgRemovePostReaction_ValidateBasic(t *testing.T) { tests := []struct { name string - msg msgs.MsgRemovePostReaction + msg types.MsgRemovePostReaction error error }{ { name: "Invalid post id returns error", - msg: msgs.NewMsgRemovePostReaction("", testOwner, ":+1:"), + msg: types.NewMsgRemovePostReaction("", testOwner, ":+1:"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid post id: "), }, { name: "Invalid user address: ", - msg: msgs.NewMsgRemovePostReaction(id, nil, ":like:"), + msg: types.NewMsgRemovePostReaction(id, nil, ":like:"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, "Invalid user address: "), }, { name: "Blank value returns no error", - msg: msgs.NewMsgRemovePostReaction(id, testOwner, ""), + msg: types.NewMsgRemovePostReaction(id, testOwner, ""), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Reaction value must be an emoji or an emoji shortcode. "+ "If a shortcode is provided, it must only contains a-z, 0-9, - and _ and must start and end with a :"), }, { name: "Valid message returns no error (with shortcode)", - msg: msgs.NewMsgRemovePostReaction(id, testOwner, ":+1:"), + msg: types.NewMsgRemovePostReaction(id, testOwner, ":+1:"), error: nil, }, { name: "Valid message returns no error (with emoji)", - msg: msgs.NewMsgRemovePostReaction(id, testOwner, "🤩"), + msg: types.NewMsgRemovePostReaction(id, testOwner, "🤩"), error: nil, }, } diff --git a/x/posts/internal/types/msgs/msgs_test.go b/x/posts/internal/types/msgs_test.go similarity index 87% rename from x/posts/internal/types/msgs/msgs_test.go rename to x/posts/internal/types/msgs_test.go index fed3f6c913..d59755521b 100644 --- a/x/posts/internal/types/msgs/msgs_test.go +++ b/x/posts/internal/types/msgs_test.go @@ -1,13 +1,12 @@ -package msgs_test +package types_test import ( + "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" "time" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" - "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" "github.com/stretchr/testify/require" ) @@ -18,19 +17,19 @@ import ( var testOwner, _ = sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") var timeZone, _ = time.LoadLocation("UTC") var date = time.Date(2020, 1, 1, 12, 0, 0, 0, timeZone) -var pollData = models.NewPollData( +var pollData = types.NewPollData( "poll?", time.Date(2050, 1, 1, 15, 15, 00, 000, timeZone), - models.NewPollAnswers( - models.NewPollAnswer(models.AnswerID(1), "Yes"), - models.NewPollAnswer(models.AnswerID(2), "No"), + types.NewPollAnswers( + types.NewPollAnswer(types.AnswerID(1), "Yes"), + types.NewPollAnswer(types.AnswerID(2), "No"), ), true, false, true, ) -var id = models.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") -var msgCreatePost = msgs.NewMsgCreatePost( +var id = types.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") +var msgCreatePost = types.NewMsgCreatePost( "My new post", id, false, @@ -38,7 +37,7 @@ var msgCreatePost = msgs.NewMsgCreatePost( map[string]string{}, testOwner, date, - models.NewPostMedias(models.NewPostMedia("https://uri.com", "text/plain", nil)), + types.NewPostMedias(types.NewPostMedia("https://uri.com", "text/plain", nil)), &pollData, ) @@ -58,12 +57,12 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { tests := []struct { name string - msg msgs.MsgCreatePost + msg types.MsgCreatePost error error }{ { name: "Empty owner returns error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "Message", "", false, @@ -78,7 +77,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty message returns error if medias, poll data and message are empty", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "", "", false, @@ -93,7 +92,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Non-empty message returns no error if medias are empty", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "message", "", false, @@ -108,7 +107,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Non-empty message returns no error if medias aren't empty", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "message", "", false, @@ -123,7 +122,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty message returns no error if medias aren't empty", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "", "", false, @@ -138,7 +137,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty message returns no error if poll isn't empty", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "", "", false, @@ -153,7 +152,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Non-empty message returns no error if poll is empty", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "message", "", false, @@ -168,7 +167,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Very long message returns error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( ` Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque massa felis, aliquam sed ipsum at, mollis pharetra quam. Vestibulum nec nulla ante. Praesent sed dignissim turpis. Curabitur aliquam nunc @@ -189,7 +188,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty subspace returns error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My message", "", false, @@ -204,7 +203,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "More than 10 optional data returns error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My message", "", false, @@ -231,7 +230,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Optional data longer than 200 characters returns error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My message", "", false, @@ -248,7 +247,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Future creation date returns error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "future post", "", false, @@ -263,7 +262,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty URI in medias returns error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "future post", "", false, @@ -271,8 +270,8 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { map[string]string{}, creator, date, - models.PostMedias{ - models.PostMedia{ + types.PostMedias{ + types.PostMedia{ URI: "", MimeType: "text/plain", }, @@ -283,7 +282,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Invalid URI in message returns error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My message", "", false, @@ -291,7 +290,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { map[string]string{}, creator, date, - models.PostMedias{models.PostMedia{ + types.PostMedias{types.PostMedia{ URI: "invalid-uri", MimeType: "text/plain", }}, @@ -301,7 +300,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty mime type in message returns error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My message", "", false, @@ -309,8 +308,8 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { map[string]string{}, creator, date, - models.PostMedias{ - models.PostMedia{ + types.PostMedias{ + types.PostMedia{ URI: "https://example.com", MimeType: "", }, @@ -321,7 +320,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Valid message does not return any error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "Message", "", false, @@ -337,8 +336,8 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, creator, date, - models.PostMedias{ - models.PostMedia{ + types.PostMedias{ + types.PostMedia{ URI: "https://uri.com", MimeType: "text/plain", }, @@ -349,7 +348,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with empty medias non-empty poll and non-empty message returns no error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My message", "", false, @@ -364,7 +363,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with non-empty medias, non-empty poll and non-empty message returns no error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My message", "", false, @@ -379,7 +378,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with non-empty medias, non empty poll and empty message returns no error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "", "", false, @@ -394,7 +393,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with empty medias, non empty poll and empty message returns no error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "", "", false, @@ -409,7 +408,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with empty poll, non-empty medias and non empty message returns no error", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My message", "", false, @@ -417,8 +416,8 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { map[string]string{}, creator, date, - models.PostMedias{ - models.PostMedia{ + types.PostMedias{ + types.PostMedia{ URI: "https://example.com", MimeType: "text/plain", }, @@ -449,12 +448,12 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { func TestMsgCreatePost_GetSignBytes(t *testing.T) { tests := []struct { name string - msg msgs.MsgCreatePost + msg types.MsgCreatePost expSignJSON string }{ { name: "Message with non-empty external reference", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My new post", id, false, @@ -462,8 +461,8 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { map[string]string{"field": "value"}, testOwner, date, - models.PostMedias{ - models.PostMedia{ + types.PostMedias{ + types.PostMedia{ URI: "https://uri.com", MimeType: "text/plain", }, @@ -474,7 +473,7 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { }, { name: "Message with empty external reference", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My post", id, false, @@ -482,8 +481,8 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { map[string]string{}, testOwner, date, - models.PostMedias{ - models.PostMedia{ + types.PostMedias{ + types.PostMedia{ URI: "https://uri.com", MimeType: "text/plain", }, @@ -494,7 +493,7 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { }, { name: "Message with empty medias", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My Post without medias", id, false, @@ -502,14 +501,14 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { map[string]string{}, testOwner, date, - models.PostMedias{}, + types.PostMedias{}, msgCreatePost.PollData, ), expSignJSON: `{"type":"desmos/MsgCreatePost","value":{"allows_comments":false,"creation_date":"2020-01-01T12:00:00Z","creator":"cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns","message":"My Post without medias","parent_id":"dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1","poll_data":{"allows_answer_edits":true,"allows_multiple_answers":false,"end_date":"2050-01-01T15:15:00Z","is_open":true,"provided_answers":[{"id":"1","text":"Yes"},{"id":"2","text":"No"}],"question":"poll?"},"subspace":"4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"}}`, }, { name: "Message with empty poll data", - msg: msgs.NewMsgCreatePost( + msg: types.NewMsgCreatePost( "My Post without medias", id, false, @@ -517,8 +516,8 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { map[string]string{}, testOwner, date, - models.PostMedias{ - models.PostMedia{ + types.PostMedias{ + types.PostMedia{ URI: "https://uri.com", MimeType: "text/plain", }, @@ -548,7 +547,7 @@ func TestMsgCreatePost_GetSigners(t *testing.T) { // ---------------------- var editDate = time.Date(2010, 1, 1, 15, 0, 0, 0, timeZone) -var msgEditPost = msgs.NewMsgEditPost(id, "Edited post message", testOwner, editDate) +var msgEditPost = types.NewMsgEditPost(id, "Edited post message", testOwner, editDate) func TestMsgEditPost_Route(t *testing.T) { actual := msgEditPost.Route() @@ -563,42 +562,42 @@ func TestMsgEditPost_Type(t *testing.T) { func TestMsgEditPost_ValidateBasic(t *testing.T) { tests := []struct { name string - msg msgs.MsgEditPost + msg types.MsgEditPost error error }{ { name: "Invalid post id returns error", - msg: msgs.NewMsgEditPost("", "Edited post message", testOwner, editDate), + msg: types.NewMsgEditPost("", "Edited post message", testOwner, editDate), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid post id: "), }, { name: "Invalid editor returns error", - msg: msgs.NewMsgEditPost(id, "Edited post message", nil, editDate), + msg: types.NewMsgEditPost(id, "Edited post message", nil, editDate), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, "Invalid editor address: "), }, { name: "Blank message returns error", - msg: msgs.NewMsgEditPost(id, " ", testOwner, editDate), + msg: types.NewMsgEditPost(id, " ", testOwner, editDate), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post message cannot be empty nor blank"), }, { name: "Empty message returns error", - msg: msgs.NewMsgEditPost(id, "", testOwner, editDate), + msg: types.NewMsgEditPost(id, "", testOwner, editDate), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post message cannot be empty nor blank"), }, { name: "Empty edit date returns error", - msg: msgs.NewMsgEditPost(id, "My new message", testOwner, time.Time{}), + msg: types.NewMsgEditPost(id, "My new message", testOwner, time.Time{}), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid edit date"), }, { name: "Future edit date returns error", - msg: msgs.NewMsgEditPost(id, "My new message", testOwner, time.Now().Add(time.Hour)), + msg: types.NewMsgEditPost(id, "My new message", testOwner, time.Now().Add(time.Hour)), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Edit date cannot be in the future"), }, { name: "Valid message returns no error", - msg: msgs.NewMsgEditPost(id, "Edited post message", testOwner, editDate), + msg: types.NewMsgEditPost(id, "Edited post message", testOwner, editDate), error: nil, }, } diff --git a/x/posts/internal/types/models/poll_answers_response.go b/x/posts/internal/types/poll_answers_response.go similarity index 97% rename from x/posts/internal/types/models/poll_answers_response.go rename to x/posts/internal/types/poll_answers_response.go index dc8555fb94..7d586018f5 100644 --- a/x/posts/internal/types/models/poll_answers_response.go +++ b/x/posts/internal/types/poll_answers_response.go @@ -1,4 +1,4 @@ -package models +package types import ( "fmt" diff --git a/x/posts/internal/types/models/poll_answers_response_test.go b/x/posts/internal/types/poll_answers_response_test.go similarity index 77% rename from x/posts/internal/types/models/poll_answers_response_test.go rename to x/posts/internal/types/poll_answers_response_test.go index 831ffb35be..8a087696bd 100644 --- a/x/posts/internal/types/models/poll_answers_response_test.go +++ b/x/posts/internal/types/poll_answers_response_test.go @@ -1,9 +1,9 @@ -package models_test +package types_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types" + "github.com/desmos-labs/desmos/x/posts/internal/types/polls" "github.com/stretchr/testify/require" "testing" @@ -13,7 +13,7 @@ func TestPollAnswersQueryResponse_String(t *testing.T) { testOwner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) - pollResponse := models.PollAnswersQueryResponse{ + pollResponse := types.PollAnswersQueryResponse{ PostID: "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", AnswersDetails: polls.NewUserAnswers( polls.NewUserAnswer([]polls.AnswerID{1, 2}, testOwner), diff --git a/x/posts/internal/types/models/polls/poll_answer.go b/x/posts/internal/types/polls/poll_answer.go similarity index 100% rename from x/posts/internal/types/models/polls/poll_answer.go rename to x/posts/internal/types/polls/poll_answer.go diff --git a/x/posts/internal/types/models/polls/poll_answer_test.go b/x/posts/internal/types/polls/poll_answer_test.go similarity index 98% rename from x/posts/internal/types/models/polls/poll_answer_test.go rename to x/posts/internal/types/polls/poll_answer_test.go index 58e4763e49..bef3ff32eb 100644 --- a/x/posts/internal/types/models/polls/poll_answer_test.go +++ b/x/posts/internal/types/polls/poll_answer_test.go @@ -1,7 +1,7 @@ package polls_test import ( - "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/polls" "github.com/stretchr/testify/require" "testing" diff --git a/x/posts/internal/types/models/polls/poll_data.go b/x/posts/internal/types/polls/poll_data.go similarity index 100% rename from x/posts/internal/types/models/polls/poll_data.go rename to x/posts/internal/types/polls/poll_data.go diff --git a/x/posts/internal/types/models/polls/poll_data_test.go b/x/posts/internal/types/polls/poll_data_test.go similarity index 99% rename from x/posts/internal/types/models/polls/poll_data_test.go rename to x/posts/internal/types/polls/poll_data_test.go index f2f622bd2b..71ccc17653 100644 --- a/x/posts/internal/types/models/polls/poll_data_test.go +++ b/x/posts/internal/types/polls/poll_data_test.go @@ -2,7 +2,7 @@ package polls_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/polls" "github.com/stretchr/testify/require" "testing" diff --git a/x/posts/internal/types/models/post.go b/x/posts/internal/types/post.go similarity index 99% rename from x/posts/internal/types/models/post.go rename to x/posts/internal/types/post.go index 75b045554d..777b9fe1eb 100644 --- a/x/posts/internal/types/models/post.go +++ b/x/posts/internal/types/post.go @@ -1,4 +1,4 @@ -package models +package types import ( "crypto/sha256" diff --git a/x/posts/internal/types/models/post_response.go b/x/posts/internal/types/post_response.go similarity index 99% rename from x/posts/internal/types/models/post_response.go rename to x/posts/internal/types/post_response.go index e5b2c58da6..5e2ee59f08 100644 --- a/x/posts/internal/types/models/post_response.go +++ b/x/posts/internal/types/post_response.go @@ -1,4 +1,4 @@ -package models +package types import ( "encoding/json" diff --git a/x/posts/internal/types/models/post_response_test.go b/x/posts/internal/types/post_response_test.go similarity index 82% rename from x/posts/internal/types/models/post_response_test.go rename to x/posts/internal/types/post_response_test.go index d9e928cc05..695a170ed6 100644 --- a/x/posts/internal/types/models/post_response_test.go +++ b/x/posts/internal/types/post_response_test.go @@ -1,13 +1,13 @@ -package models_test +package types_test import ( "encoding/json" + "github.com/desmos-labs/desmos/x/posts/internal/types" "strings" "testing" "time" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" "github.com/stretchr/testify/require" ) @@ -24,7 +24,7 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { timeZone, err := time.LoadLocation("UTC") require.NoError(t, err) - post := models.NewPost( + post := types.NewPost( "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", "", "Post", @@ -35,48 +35,48 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { postOwner, ) - medias := models.NewPostMedias( - models.NewPostMedia("https://uri.com", "text/plain", []sdk.AccAddress{postOwner}), + medias := types.NewPostMedias( + types.NewPostMedia("https://uri.com", "text/plain", []sdk.AccAddress{postOwner}), ) - mediasNoTags := models.NewPostMedias( - models.NewPostMedia("https://uri.com", "text/plain", nil), + mediasNoTags := types.NewPostMedias( + types.NewPostMedia("https://uri.com", "text/plain", nil), ) - pollData := models.NewPollData( + pollData := types.NewPollData( "poll?", time.Date(2050, 1, 1, 15, 15, 00, 000, timeZone), - models.PollAnswers{ - models.NewPollAnswer(models.AnswerID(1), "Yes"), - models.NewPollAnswer(models.AnswerID(2), "No"), + types.PollAnswers{ + types.NewPollAnswer(types.AnswerID(1), "Yes"), + types.NewPollAnswer(types.AnswerID(2), "No"), }, true, false, true, ) - answersDetails := models.NewUserAnswers( - models.NewUserAnswer([]models.AnswerID{models.AnswerID(1)}, liker), + answersDetails := types.NewUserAnswers( + types.NewUserAnswer([]types.AnswerID{types.AnswerID(1)}, liker), ) - children := models.PostIDs{ + children := types.PostIDs{ "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", } - reactionsResponses := []models.PostReaction{ - models.NewPostReaction(":like:", "https://example.com/like", liker), - models.NewPostReaction(":+1:", "👍", otherLiker), + reactionsResponses := []types.PostReaction{ + types.NewPostReaction(":like:", "https://example.com/like", liker), + types.NewPostReaction(":+1:", "👍", otherLiker), } tests := []struct { name string - response models.PostQueryResponse + response types.PostQueryResponse expResponse string }{ { name: "Post Query Response with Post that contains media and poll", - response: models.NewPostResponse( + response: types.NewPostResponse( post.WithMedias(medias).WithPollData(pollData), answersDetails, reactionsResponses, @@ -86,7 +86,7 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { }, { name: "Post Query Response with Post that contains media without tags", - response: models.NewPostResponse( + response: types.NewPostResponse( post.WithMedias(mediasNoTags), answersDetails, reactionsResponses, @@ -96,7 +96,7 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { }, { name: "Post Query with Post that not contains poll", - response: models.NewPostResponse( + response: types.NewPostResponse( post.WithMedias(medias), nil, reactionsResponses, @@ -106,7 +106,7 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { }, { name: "Post Query Response with Post that not contains media", - response: models.NewPostResponse( + response: types.NewPostResponse( post.WithPollData(pollData), answersDetails, reactionsResponses, @@ -139,22 +139,22 @@ func TestPostQueryResponse_String(t *testing.T) { timeZone, err := time.LoadLocation("UTC") require.NoError(t, err) - medias := models.NewPostMedias(models.NewPostMedia("https://uri.com", "text/plain", []sdk.AccAddress{postOwner})) + medias := types.NewPostMedias(types.NewPostMedia("https://uri.com", "text/plain", []sdk.AccAddress{postOwner})) - pollData := models.NewPollData( + pollData := types.NewPollData( "poll?", time.Now().UTC().Add(time.Hour), - models.NewPollAnswers( - models.NewPollAnswer(models.AnswerID(1), "Yes"), - models.NewPollAnswer(models.AnswerID(2), "No"), + types.NewPollAnswers( + types.NewPollAnswer(types.AnswerID(1), "Yes"), + types.NewPollAnswer(types.AnswerID(2), "No"), ), true, false, true, ) - postResponse := models.NewPostResponse( - models.NewPost( + postResponse := types.NewPostResponse( + types.NewPost( "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", "", "Post", @@ -164,14 +164,14 @@ func TestPostQueryResponse_String(t *testing.T) { time.Date(2020, 2, 2, 15, 0, 0, 0, timeZone), postOwner, ).WithMedias(medias).WithPollData(pollData), - models.NewUserAnswers( - models.NewUserAnswer([]models.AnswerID{models.AnswerID(1)}, liker), + types.NewUserAnswers( + types.NewUserAnswer([]types.AnswerID{types.AnswerID(1)}, liker), ), - []models.PostReaction{ - models.NewPostReaction(":like:", "https://example.com/like", liker), - models.NewPostReaction(":+1:", "👍", otherLiker), + []types.PostReaction{ + types.NewPostReaction(":like:", "https://example.com/like", liker), + types.NewPostReaction(":+1:", "👍", otherLiker), }, - models.PostIDs{ + types.PostIDs{ "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", }, diff --git a/x/posts/internal/types/models/post_test.go b/x/posts/internal/types/post_test.go similarity index 82% rename from x/posts/internal/types/models/post_test.go rename to x/posts/internal/types/post_test.go index 68f3389101..3d63cc47c8 100644 --- a/x/posts/internal/types/models/post_test.go +++ b/x/posts/internal/types/post_test.go @@ -1,13 +1,13 @@ -package models_test +package types_test import ( + "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" "time" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/models" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/polls" "github.com/stretchr/testify/require" ) @@ -29,20 +29,20 @@ func TestPostID_Equals(t *testing.T) { tests := []struct { name string - postID models.PostID - otherID models.PostID + postID types.PostID + otherID types.PostID expBool bool }{ { name: "Equal IDs returns true", - postID: models.ComputeID(creationDate, creator, subspace), - otherID: models.ComputeID(creationDate, creator, subspace), + postID: types.ComputeID(creationDate, creator, subspace), + otherID: types.ComputeID(creationDate, creator, subspace), expBool: true, }, { name: "Non Equal IDs returns false", - postID: models.ComputeID(creationDate, creator, subspace), - otherID: models.ComputeID(creationDate, creator, subspace2), + postID: types.ComputeID(creationDate, creator, subspace), + otherID: types.ComputeID(creationDate, creator, subspace2), expBool: false, }, } @@ -67,7 +67,7 @@ func TestPostID_String(t *testing.T) { require.NoError(t, err) subspace := "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" - computedID := models.ComputeID(creationDate, creator, subspace) + computedID := types.ComputeID(creationDate, creator, subspace) require.Equal(t, "f55d90114d81e70399d6330a57081b86ae1bdf928b78a57e88870f64240009ef", computedID.String()) } @@ -81,26 +81,26 @@ func TestPostIDs_Equals(t *testing.T) { id2 := []byte("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") tests := []struct { name string - first models.PostIDs - second models.PostIDs + first types.PostIDs + second types.PostIDs expEquals bool }{ { name: "Different length", - first: models.PostIDs{models.PostID(id), models.PostID(id)}, - second: models.PostIDs{models.PostID(id)}, + first: types.PostIDs{types.PostID(id), types.PostID(id)}, + second: types.PostIDs{types.PostID(id)}, expEquals: false, }, { name: "Different order", - first: models.PostIDs{models.PostID(id), models.PostID(id2)}, - second: models.PostIDs{models.PostID(id2), models.PostID(id)}, + first: types.PostIDs{types.PostID(id), types.PostID(id2)}, + second: types.PostIDs{types.PostID(id2), types.PostID(id)}, expEquals: false, }, { name: "Same length and order", - first: models.PostIDs{models.PostID(id), models.PostID(id2)}, - second: models.PostIDs{models.PostID(id), models.PostID(id2)}, + first: types.PostIDs{types.PostID(id), types.PostID(id2)}, + second: types.PostIDs{types.PostID(id), types.PostID(id2)}, expEquals: true, }, } @@ -118,23 +118,23 @@ func TestPostIDs_AppendIfMissing(t *testing.T) { id2 := []byte("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") tests := []struct { name string - IDs models.PostIDs - newID models.PostID - expIDs models.PostIDs + IDs types.PostIDs + newID types.PostID + expIDs types.PostIDs expEdited bool }{ { name: "AppendIfMissing dont append anything", - IDs: models.PostIDs{models.PostID(id)}, - newID: models.PostID(id), - expIDs: models.PostIDs{models.PostID(id)}, + IDs: types.PostIDs{types.PostID(id)}, + newID: types.PostID(id), + expIDs: types.PostIDs{types.PostID(id)}, expEdited: false, }, { name: "AppendIfMissing append something", - IDs: models.PostIDs{models.PostID(id)}, - newID: models.PostID(id2), - expIDs: models.PostIDs{models.PostID(id), models.PostID(id2)}, + IDs: types.PostIDs{types.PostID(id)}, + newID: types.PostID(id2), + expIDs: types.PostIDs{types.PostID(id), types.PostID(id2)}, expEdited: true, }, } @@ -154,8 +154,8 @@ func TestPostIDs_AppendIfMissing(t *testing.T) { // ----------- func TestPost_String(t *testing.T) { - id := models.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") - id2 := models.PostID("e1ba4807a15d8579f79cfd90a07fc015e6125565c9271eb94aded0b2ebf86163") + id := types.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") + id2 := types.PostID("e1ba4807a15d8579f79cfd90a07fc015e6125565c9271eb94aded0b2ebf86163") owner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -163,7 +163,7 @@ func TestPost_String(t *testing.T) { require.NoError(t, err) date := time.Date(2020, 1, 1, 12, 00, 00, 000, timeZone) - post := models.Post{ + post := types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -182,8 +182,8 @@ func TestPost_String(t *testing.T) { } func TestPost_Validate(t *testing.T) { - id := models.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") - id2 := models.PostID("e1ba4807a15d8579f79cfd90a07fc015e6125565c9271eb94aded0b2ebf86163") + id := types.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") + id2 := types.PostID("e1ba4807a15d8579f79cfd90a07fc015e6125565c9271eb94aded0b2ebf86163") owner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -210,52 +210,52 @@ func TestPost_Validate(t *testing.T) { tests := []struct { name string - post models.Post + post types.Post expError string }{ { name: "Invalid postID", - post: models.NewPost("", "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), + post: types.NewPost("", "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), expError: "invalid postID: ", }, { name: "Invalid post owner", - post: models.NewPost(id, id2, "", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, nil).WithMedias(medias).WithPollData(pollData), + post: types.NewPost(id, id2, "", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, nil).WithMedias(medias).WithPollData(pollData), expError: "invalid post owner: ", }, { name: "Empty post message and media", - post: models.NewPost(id, id2, "", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), + post: types.NewPost(id, id2, "", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), expError: "post message or medias required, they cannot be both empty", }, { name: "Empty post message (blank) and media", - post: models.NewPost(id, id2, " ", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), + post: types.NewPost(id, id2, " ", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), expError: "post message or medias required, they cannot be both empty", }, { name: "Invalid post creation time", - post: models.NewPost(id, id2, "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, time.Time{}, owner).WithMedias(medias).WithPollData(pollData), + post: types.NewPost(id, id2, "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, time.Time{}, owner).WithMedias(medias).WithPollData(pollData), expError: "invalid post creation time: 0001-01-01 00:00:00 +0000 UTC", }, { name: "Invalid post last edit time", - post: models.Post{PostID: id, Creator: owner, Message: "Message", Subspace: "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", Created: date, LastEdited: date.AddDate(0, 0, -1)}, + post: types.Post{PostID: id, Creator: owner, Message: "Message", Subspace: "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", Created: date, LastEdited: date.AddDate(0, 0, -1)}, expError: "invalid post last edit time: 2019-12-31 12:00:00 +0000 UTC", }, { name: "Invalid post subspace", - post: models.NewPost(id, id2, "Message", true, "", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), + post: types.NewPost(id, id2, "Message", true, "", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), expError: "post subspace must be a valid sha-256 hash", }, { name: "Invalid post subspace(blank)", - post: models.NewPost(id, id2, "Message", true, " ", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), + post: types.NewPost(id, id2, "Message", true, " ", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), expError: "post subspace must be a valid sha-256 hash", }, { name: "Post creation data in future", - post: models.Post{ + post: types.Post{ PostID: id, ParentID: id2, Message: "Message", @@ -270,7 +270,7 @@ func TestPost_Validate(t *testing.T) { }, { name: "Post last edit date in future", - post: models.Post{ + post: types.Post{ PostID: id, ParentID: id2, Message: "Message", @@ -286,7 +286,7 @@ func TestPost_Validate(t *testing.T) { }, { name: "Post message cannot be longer than 500 characters", - post: models.NewPost( + post: types.NewPost( id, id2, ` @@ -306,7 +306,7 @@ func TestPost_Validate(t *testing.T) { }, { name: "post optional data cannot contain more than 10 key-value", - post: models.NewPost( + post: types.NewPost( id, id2, "Message", @@ -332,7 +332,7 @@ func TestPost_Validate(t *testing.T) { }, { name: "post optional data values cannot exceed 200 characters", - post: models.NewPost( + post: types.NewPost( id, id2, "Message", @@ -350,12 +350,12 @@ func TestPost_Validate(t *testing.T) { }, { name: "Valid post without poll data", - post: models.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithMedias(medias), + post: types.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithMedias(medias), expError: "", }, { name: "Valid post without medias", - post: models.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), + post: types.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), expError: "", }, } @@ -373,8 +373,8 @@ func TestPost_Validate(t *testing.T) { } func TestPost_Equals(t *testing.T) { - id := models.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") - id2 := models.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") + id := types.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") + id2 := types.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") owner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -406,13 +406,13 @@ func TestPost_Equals(t *testing.T) { tests := []struct { name string - first models.Post - second models.Post + first types.Post + second types.Post expEquals bool }{ { name: "Different post ID", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -424,7 +424,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id2, ParentID: id, Message: "My post message", @@ -440,7 +440,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different parent ID", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id, Message: "My post message", @@ -452,7 +452,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -468,7 +468,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different message", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -480,7 +480,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "Another post message", @@ -496,7 +496,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different creation time", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -508,7 +508,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -524,7 +524,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different last edited", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -536,7 +536,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -552,7 +552,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different allows comments", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -564,7 +564,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -580,7 +580,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different subspace", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -592,7 +592,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -608,7 +608,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different optional data", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -622,7 +622,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -640,7 +640,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different owner", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -652,7 +652,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -668,7 +668,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different medias", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -680,7 +680,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -696,7 +696,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different polls", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -709,7 +709,7 @@ func TestPost_Equals(t *testing.T) { Medias: medias, PollData: nil, }, - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -726,7 +726,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Equals posts", - first: models.Post{ + first: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -737,7 +737,7 @@ func TestPost_Equals(t *testing.T) { OptionalData: map[string]string{}, Creator: owner, }.WithMedias(medias).WithPollData(pollData), - second: models.Post{ + second: types.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -761,8 +761,8 @@ func TestPost_Equals(t *testing.T) { } func TestPost_GetPostHashtags(t *testing.T) { - id := models.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") - id2 := models.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") + id := types.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") + id2 := types.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") owner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -773,12 +773,12 @@ func TestPost_GetPostHashtags(t *testing.T) { tests := []struct { name string - post models.Post + post types.Post expHashtags []string }{ { name: "Hashtags in message extracted correctly (spaced hashtags)", - post: models.NewPost(id, + post: types.NewPost(id, id2, "Post with #test #desmos", false, @@ -791,7 +791,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "Hashtags in message extracted correctly (non-spaced hashtags)", - post: models.NewPost(id, + post: types.NewPost(id, id2, "Post with #test#desmos", false, @@ -804,7 +804,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "Hashtags in message extracted correctly (underscore separated hashtags)", - post: models.NewPost(id, + post: types.NewPost(id, id2, "Post with #test_#desmos", false, @@ -817,7 +817,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "Hashtags in message extracted correctly (only number hashtag)", - post: models.NewPost(id, + post: types.NewPost(id, id2, "Post with #101112", false, @@ -830,7 +830,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "No hashtags in message", - post: models.NewPost(id, + post: types.NewPost(id, id2, "Post with no hashtag", false, @@ -843,7 +843,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "No same hashtags inside string array", - post: models.NewPost(id, + post: types.NewPost(id, id2, "Post with double #hashtag #hashtag", false, @@ -869,8 +869,8 @@ func TestPost_GetPostHashtags(t *testing.T) { // --- Posts // ----------- func TestPosts_String(t *testing.T) { - id := models.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") - id2 := models.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") + id := types.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") + id2 := types.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") owner1, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -899,9 +899,9 @@ func TestPosts_String(t *testing.T) { date := time.Date(2020, 1, 1, 12, 0, 00, 000, timeZone) - posts := models.Posts{ - models.NewPost(id, id2, "Post 1", false, "external-ref-1", map[string]string{}, date, owner1).WithMedias(medias).WithPollData(pollData), - models.NewPost(id, id2, "Post 2", false, "external-ref-1", map[string]string{}, date, owner2).WithMedias(medias).WithPollData(pollData), + posts := types.Posts{ + types.NewPost(id, id2, "Post 1", false, "external-ref-1", map[string]string{}, date, owner1).WithMedias(medias).WithPollData(pollData), + types.NewPost(id, id2, "Post 2", false, "external-ref-1", map[string]string{}, date, owner2).WithMedias(medias).WithPollData(pollData), } expected := `ID - [Creator] Message diff --git a/x/posts/internal/types/models/reactions/post_reaction.go b/x/posts/internal/types/reactions/post_reaction.go similarity index 98% rename from x/posts/internal/types/models/reactions/post_reaction.go rename to x/posts/internal/types/reactions/post_reaction.go index 0fb710ea7e..8233bc3c68 100644 --- a/x/posts/internal/types/models/reactions/post_reaction.go +++ b/x/posts/internal/types/reactions/post_reaction.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" emoji "github.com/desmos-labs/Go-Emoji-Utils" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/common" ) // --------------- diff --git a/x/posts/internal/types/models/reactions/post_reaction_test.go b/x/posts/internal/types/reactions/post_reaction_test.go similarity index 99% rename from x/posts/internal/types/models/reactions/post_reaction_test.go rename to x/posts/internal/types/reactions/post_reaction_test.go index 92571f3701..ba8b112028 100644 --- a/x/posts/internal/types/models/reactions/post_reaction_test.go +++ b/x/posts/internal/types/reactions/post_reaction_test.go @@ -5,7 +5,7 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" + "github.com/desmos-labs/desmos/x/posts/internal/types/reactions" "github.com/stretchr/testify/require" ) diff --git a/x/posts/internal/types/models/reactions/reaction.go b/x/posts/internal/types/reactions/reaction.go similarity index 97% rename from x/posts/internal/types/models/reactions/reaction.go rename to x/posts/internal/types/reactions/reaction.go index 44c67c5214..dae908358f 100644 --- a/x/posts/internal/types/models/reactions/reaction.go +++ b/x/posts/internal/types/reactions/reaction.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" emoji "github.com/desmos-labs/Go-Emoji-Utils" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/common" ) // Reaction represents a registered reaction that can be referenced diff --git a/x/posts/internal/types/models/reactions/reaction_test.go b/x/posts/internal/types/reactions/reaction_test.go similarity index 98% rename from x/posts/internal/types/models/reactions/reaction_test.go rename to x/posts/internal/types/reactions/reaction_test.go index 58a5132188..f5eed5fc18 100644 --- a/x/posts/internal/types/models/reactions/reaction_test.go +++ b/x/posts/internal/types/reactions/reaction_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" + "github.com/desmos-labs/desmos/x/posts/internal/types/reactions" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/profiles/alias.go b/x/profiles/alias.go index ce71fe94ac..32e9dbe0d5 100644 --- a/x/profiles/alias.go +++ b/x/profiles/alias.go @@ -15,6 +15,10 @@ const ( OpWeightMsgDeleteProfile = simulation.OpWeightMsgDeleteProfile DefaultGasValue = simulation.DefaultGasValue ParamsKey = simulation.ParamsKey + EventTypeProfileSaved = types.EventTypeProfileSaved + EventTypeProfileDeleted = types.EventTypeProfileDeleted + AttributeProfileDtag = types.AttributeProfileDtag + AttributeProfileCreator = types.AttributeProfileCreator DefaultParamspace = types.DefaultParamspace ModuleName = types.ModuleName RouterKey = types.RouterKey @@ -25,21 +29,17 @@ const ( QueryProfile = types.QueryProfile QueryProfiles = types.QueryProfiles QueryParams = types.QueryParams - EventTypeProfileSaved = types.EventTypeProfileSaved - EventTypeProfileDeleted = types.EventTypeProfileDeleted - AttributeProfileDtag = types.AttributeProfileDtag - AttributeProfileCreator = types.AttributeProfileCreator ) var ( // functions aliases - NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier RegisterInvariants = keeper.RegisterInvariants AllInvariants = keeper.AllInvariants ValidProfileInvariant = keeper.ValidProfileInvariant NewHandler = keeper.NewHandler ValidateProfile = keeper.ValidateProfile + NewKeeper = keeper.NewKeeper ParamChanges = simulation.ParamChanges DecodeStore = simulation.DecodeStore SimulateMsgSaveProfile = simulation.SimulateMsgSaveProfile @@ -57,6 +57,13 @@ var ( RandomBioParams = simulation.RandomBioParams WeightedOperations = simulation.WeightedOperations RandomizedGenState = simulation.RandomizedGenState + NewProfile = types.NewProfile + NewProfiles = types.NewProfiles + NewPictures = types.NewPictures + NewGenesisState = types.NewGenesisState + DefaultGenesisState = types.DefaultGenesisState + ValidateGenesis = types.ValidateGenesis + RegisterCodec = types.RegisterCodec ParamKeyTable = types.ParamKeyTable NewParams = types.NewParams DefaultParams = types.DefaultParams @@ -71,15 +78,9 @@ var ( NewMsgDeleteProfile = types.NewMsgDeleteProfile ProfileStoreKey = types.ProfileStoreKey DtagStoreKey = types.DtagStoreKey - NewProfile = types.NewProfile - NewProfiles = types.NewProfiles - NewPictures = types.NewPictures - NewGenesisState = types.NewGenesisState - DefaultGenesisState = types.DefaultGenesisState - ValidateGenesis = types.ValidateGenesis - RegisterCodec = types.RegisterCodec // variable aliases + ModuleCdc = types.ModuleCdc DefaultMinMonikerLength = types.DefaultMinMonikerLength DefaultMaxMonikerLength = types.DefaultMaxMonikerLength DefaultRegEx = types.DefaultRegEx @@ -92,18 +93,17 @@ var ( URIRegEx = types.URIRegEx ProfileStorePrefix = types.ProfileStorePrefix DtagStorePrefix = types.DtagStorePrefix - ModuleCdc = types.ModuleCdc ) type ( Keeper = keeper.Keeper + Profile = types.Profile + Profiles = types.Profiles + Pictures = types.Pictures + GenesisState = types.GenesisState Params = types.Params MonikerParams = types.MonikerParams DtagParams = types.DtagParams MsgSaveProfile = types.MsgSaveProfile MsgDeleteProfile = types.MsgDeleteProfile - Profile = types.Profile - Profiles = types.Profiles - Pictures = types.Pictures - GenesisState = types.GenesisState ) diff --git a/x/reports/alias.go b/x/reports/alias.go index c79c5845f0..f3b02d30f7 100755 --- a/x/reports/alias.go +++ b/x/reports/alias.go @@ -16,50 +16,50 @@ import ( ) const ( + OpWeightMsgReportPost = simulation.OpWeightMsgReportPost + DefaultGasValue = simulation.DefaultGasValue + EventTypePostReported = types.EventTypePostReported + AttributeKeyPostID = types.AttributeKeyPostID + AttributeKeyReportOwner = types.AttributeKeyReportOwner ModuleName = common.ModuleName RouterKey = common.RouterKey StoreKey = common.StoreKey ActionReportPost = common.ActionReportPost QuerierRoute = common.QuerierRoute QueryReports = common.QueryReports - OpWeightMsgReportPost = simulation.OpWeightMsgReportPost - DefaultGasValue = simulation.DefaultGasValue - EventTypePostReported = types.EventTypePostReported - AttributeKeyPostID = types.AttributeKeyPostID - AttributeKeyReportOwner = types.AttributeKeyReportOwner ) var ( // functions aliases - NewReportResponse = models.NewReportResponse + DecodeStore = simulation.DecodeStore + SimulateMsgReportPost = simulation.SimulateMsgReportPost + RandomReportsData = simulation.RandomReportsData + RandomPostID = simulation.RandomPostID + RandomReportMessage = simulation.RandomReportMessage + RandomReportTypes = simulation.RandomReportTypes + WeightedOperations = simulation.WeightedOperations + RandomizedGenState = simulation.RandomizedGenState + NewGenesisState = types.NewGenesisState + DefaultGenesisState = types.DefaultGenesisState + ValidateGenesis = types.ValidateGenesis + RegisterCodec = types.RegisterCodec NewReport = models.NewReport RegisterModelsCodec = models.RegisterModelsCodec ReportStoreKey = models.ReportStoreKey - RegisterMessagesCodec = msgs.RegisterMessagesCodec + NewReportResponse = models.NewReportResponse NewMsgReportPost = msgs.NewMsgReportPost + RegisterMessagesCodec = msgs.RegisterMessagesCodec GetQueryCmd = cli.GetQueryCmd GetCmdQueryPostReports = cli.GetCmdQueryPostReports GetTxCmd = cli.GetTxCmd GetCmdReportPost = cli.GetCmdReportPost RegisterRoutes = rest.RegisterRoutes - NewKeeper = keeper.NewKeeper - NewQuerier = keeper.NewQuerier RegisterInvariants = keeper.RegisterInvariants AllInvariants = keeper.AllInvariants ValidReportsIDs = keeper.ValidReportsIDs NewHandler = keeper.NewHandler - DecodeStore = simulation.DecodeStore - SimulateMsgReportPost = simulation.SimulateMsgReportPost - RandomReportsData = simulation.RandomReportsData - RandomPostID = simulation.RandomPostID - RandomReportMessage = simulation.RandomReportMessage - RandomReportTypes = simulation.RandomReportTypes - WeightedOperations = simulation.WeightedOperations - RandomizedGenState = simulation.RandomizedGenState - NewGenesisState = types.NewGenesisState - DefaultGenesisState = types.DefaultGenesisState - ValidateGenesis = types.ValidateGenesis - RegisterCodec = types.RegisterCodec + NewKeeper = keeper.NewKeeper + NewQuerier = keeper.NewQuerier // variable aliases MsgsCodec = msgs.MsgsCodec @@ -70,12 +70,12 @@ var ( ) type ( + Keeper = keeper.Keeper + ReportsData = simulation.ReportsData GenesisState = types.GenesisState - ReportsQueryResponse = models.ReportsQueryResponse Report = models.Report Reports = models.Reports + ReportsQueryResponse = models.ReportsQueryResponse MsgReportPost = msgs.MsgReportPost ReportPostReq = rest.ReportPostReq - Keeper = keeper.Keeper - ReportsData = simulation.ReportsData ) From ff99ed081e6e68ea73df85fe8af10fd88227575b Mon Sep 17 00:00:00 2001 From: bragaz Date: Mon, 29 Jun 2020 18:44:53 +0200 Subject: [PATCH 02/11] implemented post params --- app/app.go | 2 + x/magpie/alias.go | 20 +- x/posts/alias.go | 297 +++++++++--------- x/posts/client/cli/query.go | 24 ++ x/posts/client/rest/query.go | 15 + x/posts/genesis.go | 4 + x/posts/internal/keeper/common_test.go | 11 +- x/posts/internal/keeper/handler.go | 37 +++ x/posts/internal/keeper/handler_test.go | 102 ++++++ x/posts/internal/keeper/invariants.go | 2 +- x/posts/internal/keeper/invariants_test.go | 3 +- x/posts/internal/keeper/keeper.go | 18 +- x/posts/internal/keeper/params.go | 17 + x/posts/internal/keeper/params_test.go | 60 ++++ x/posts/internal/keeper/querier.go | 13 + x/posts/internal/keeper/querier_test.go | 32 ++ x/posts/internal/simulation/genesis.go | 17 +- x/posts/internal/simulation/params.go | 32 ++ x/posts/internal/simulation/utils.go | 8 + x/posts/internal/types/alias.go | 46 ++- x/posts/internal/types/common/keys.go | 5 +- x/posts/internal/types/genesis.go | 12 +- x/posts/internal/types/genesis_test.go | 19 ++ x/posts/internal/types/msg_reactions_test.go | 5 +- x/posts/internal/types/msgs.go | 19 -- x/posts/internal/types/msgs_polls_test.go | 2 +- .../types/msgs_post_reactions_test.go | 2 +- x/posts/internal/types/msgs_test.go | 67 +--- x/posts/internal/types/params.go | 138 ++++++++ x/posts/internal/types/params_test.go | 153 +++++++++ x/posts/internal/types/post.go | 17 - x/posts/internal/types/post_response_test.go | 2 +- x/posts/internal/types/post_test.go | 66 +--- x/posts/module.go | 2 +- x/profiles/alias.go | 26 +- x/reports/alias.go | 38 +-- x/reports/internal/keeper/common_test.go | 15 +- x/reports/internal/types/alias.go | 4 +- 38 files changed, 951 insertions(+), 401 deletions(-) create mode 100644 x/posts/internal/keeper/params.go create mode 100644 x/posts/internal/keeper/params_test.go create mode 100644 x/posts/internal/simulation/params.go create mode 100644 x/posts/internal/types/params.go create mode 100644 x/posts/internal/types/params_test.go diff --git a/app/app.go b/app/app.go index 6b5b58a7f7..f59cdeb26a 100644 --- a/app/app.go +++ b/app/app.go @@ -179,6 +179,7 @@ func NewDesmosApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest app.subspaces[gov.ModuleName] = app.paramsKeeper.Subspace(gov.DefaultParamspace).WithKeyTable(gov.ParamKeyTable()) app.subspaces[evidence.ModuleName] = app.paramsKeeper.Subspace(evidence.DefaultParamspace) app.subspaces[crisis.ModuleName] = app.paramsKeeper.Subspace(crisis.DefaultParamspace) + app.subspaces[posts.ModuleName] = app.paramsKeeper.Subspace(posts.DefaultParamspace) app.subspaces[profiles.ModuleName] = app.paramsKeeper.Subspace(profiles.DefaultParamspace) // Add keepers @@ -264,6 +265,7 @@ func NewDesmosApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest app.postsKeeper = posts.NewKeeper( app.cdc, keys[posts.StoreKey], + app.subspaces[posts.ModuleName], ) app.profileKeeper = profiles.NewKeeper( app.cdc, diff --git a/x/magpie/alias.go b/x/magpie/alias.go index 3b745304b3..8553637574 100644 --- a/x/magpie/alias.go +++ b/x/magpie/alias.go @@ -27,37 +27,37 @@ const ( var ( // functions aliases - NewQuerier = keeper.NewQuerier NewHandler = keeper.NewHandler NewKeeper = keeper.NewKeeper + NewQuerier = keeper.NewQuerier + RandomizedGenState = simulation.RandomizedGenState DecodeStore = simulation.DecodeStore RandomSessionData = simulation.RandomSessionData WeightedOperations = simulation.WeightedOperations SimulateMsgCreateSession = simulation.SimulateMsgCreateSession - RandomizedGenState = simulation.RandomizedGenState - NewGenesisState = types.NewGenesisState - DefaultGenesisState = types.DefaultGenesisState - ValidateGenesis = types.ValidateGenesis - RegisterCodec = types.RegisterCodec NewMsgCreateSession = types.NewMsgCreateSession SessionStoreKey = types.SessionStoreKey ParseSessionID = types.ParseSessionID NewSession = types.NewSession + NewGenesisState = types.NewGenesisState + DefaultGenesisState = types.DefaultGenesisState + ValidateGenesis = types.ValidateGenesis + RegisterCodec = types.RegisterCodec // variable aliases RandomNamespaces = simulation.RandomNamespaces - ModuleCdc = types.ModuleCdc SessionLengthKey = types.SessionLengthKey LastSessionIDStoreKey = types.LastSessionIDStoreKey SessionStorePrefix = types.SessionStorePrefix + ModuleCdc = types.ModuleCdc ) type ( - GenesisState = types.GenesisState + Keeper = keeper.Keeper + SessionData = simulation.SessionData MsgCreateSession = types.MsgCreateSession SessionID = types.SessionID Session = types.Session Sessions = types.Sessions - Keeper = keeper.Keeper - SessionData = simulation.SessionData + GenesisState = types.GenesisState ) diff --git a/x/posts/alias.go b/x/posts/alias.go index 3e85efcadf..e0f8fa54e9 100644 --- a/x/posts/alias.go +++ b/x/posts/alias.go @@ -14,162 +14,173 @@ import ( ) const ( - OpWeightMsgCreatePost = simulation.OpWeightMsgCreatePost - OpWeightMsgEditPost = simulation.OpWeightMsgEditPost - OpWeightMsgAddReaction = simulation.OpWeightMsgAddReaction - OpWeightMsgRemoveReaction = simulation.OpWeightMsgRemoveReaction - OpWeightMsgAnswerPoll = simulation.OpWeightMsgAnswerPoll - OpWeightMsgRegisterReaction = simulation.OpWeightMsgRegisterReaction - DefaultGasValue = simulation.DefaultGasValue - EventTypePostCreated = types.EventTypePostCreated - EventTypePostEdited = types.EventTypePostEdited - EventTypePostReactionAdded = types.EventTypePostReactionAdded - EventTypePostReactionRemoved = types.EventTypePostReactionRemoved - EventTypeAnsweredPoll = types.EventTypeAnsweredPoll - EventTypeClosePoll = types.EventTypeClosePoll - EventTypeRegisterReaction = types.EventTypeRegisterReaction - AttributeKeyPostID = types.AttributeKeyPostID - AttributeKeyPostParentID = types.AttributeKeyPostParentID - AttributeKeyPostOwner = types.AttributeKeyPostOwner - AttributeKeyPostEditTime = types.AttributeKeyPostEditTime - AttributeKeyPostCreationTime = types.AttributeKeyPostCreationTime - AttributeKeyPollAnswerer = types.AttributeKeyPollAnswerer - AttributeKeyPostReactionOwner = types.AttributeKeyPostReactionOwner - AttributeKeyPostReactionValue = types.AttributeKeyPostReactionValue - AttributeKeyReactionShortCode = types.AttributeKeyReactionShortCode - AttributeKeyReactionCreator = types.AttributeKeyReactionCreator - AttributeKeyReactionSubSpace = types.AttributeKeyReactionSubSpace - ModuleName = common.ModuleName - RouterKey = common.RouterKey - StoreKey = common.StoreKey - MaxPostMessageLength = common.MaxPostMessageLength - MaxOptionalDataFieldsNumber = common.MaxOptionalDataFieldsNumber - MaxOptionalDataFieldValueLength = common.MaxOptionalDataFieldValueLength - ActionCreatePost = common.ActionCreatePost - ActionEditPost = common.ActionEditPost - ActionAnswerPoll = common.ActionAnswerPoll - ActionAddPostReaction = common.ActionAddPostReaction - ActionRemovePostReaction = common.ActionRemovePostReaction - ActionRegisterReaction = common.ActionRegisterReaction - QuerierRoute = common.QuerierRoute - QueryPost = common.QueryPost - QueryPosts = common.QueryPosts - QueryPollAnswers = common.QueryPollAnswers - QueryRegisteredReactions = common.QueryRegisteredReactions - PostSortByCreationDate = common.PostSortByCreationDate - PostSortByID = common.PostSortByID - PostSortOrderAscending = common.PostSortOrderAscending - PostSortOrderDescending = common.PostSortOrderDescending + OpWeightMsgCreatePost = simulation.OpWeightMsgCreatePost + OpWeightMsgEditPost = simulation.OpWeightMsgEditPost + OpWeightMsgAddReaction = simulation.OpWeightMsgAddReaction + OpWeightMsgRemoveReaction = simulation.OpWeightMsgRemoveReaction + OpWeightMsgAnswerPoll = simulation.OpWeightMsgAnswerPoll + OpWeightMsgRegisterReaction = simulation.OpWeightMsgRegisterReaction + DefaultGasValue = simulation.DefaultGasValue + EventTypePostCreated = types.EventTypePostCreated + EventTypePostEdited = types.EventTypePostEdited + EventTypePostReactionAdded = types.EventTypePostReactionAdded + EventTypePostReactionRemoved = types.EventTypePostReactionRemoved + EventTypeAnsweredPoll = types.EventTypeAnsweredPoll + EventTypeClosePoll = types.EventTypeClosePoll + EventTypeRegisterReaction = types.EventTypeRegisterReaction + AttributeKeyPostID = types.AttributeKeyPostID + AttributeKeyPostParentID = types.AttributeKeyPostParentID + AttributeKeyPostOwner = types.AttributeKeyPostOwner + AttributeKeyPostEditTime = types.AttributeKeyPostEditTime + AttributeKeyPostCreationTime = types.AttributeKeyPostCreationTime + AttributeKeyPollAnswerer = types.AttributeKeyPollAnswerer + AttributeKeyPostReactionOwner = types.AttributeKeyPostReactionOwner + AttributeKeyPostReactionValue = types.AttributeKeyPostReactionValue + AttributeKeyReactionShortCode = types.AttributeKeyReactionShortCode + AttributeKeyReactionCreator = types.AttributeKeyReactionCreator + AttributeKeyReactionSubSpace = types.AttributeKeyReactionSubSpace + DefaultParamspace = types.DefaultParamspace + ModuleName = common.ModuleName + RouterKey = common.RouterKey + StoreKey = common.StoreKey + ActionCreatePost = common.ActionCreatePost + ActionEditPost = common.ActionEditPost + ActionAnswerPoll = common.ActionAnswerPoll + ActionAddPostReaction = common.ActionAddPostReaction + ActionRemovePostReaction = common.ActionRemovePostReaction + ActionRegisterReaction = common.ActionRegisterReaction + QuerierRoute = common.QuerierRoute + QueryPost = common.QueryPost + QueryPosts = common.QueryPosts + QueryPollAnswers = common.QueryPollAnswers + QueryRegisteredReactions = common.QueryRegisteredReactions + QueryParams = common.QueryParams + PostSortByCreationDate = common.PostSortByCreationDate + PostSortByID = common.PostSortByID + PostSortOrderAscending = common.PostSortOrderAscending + PostSortOrderDescending = common.PostSortOrderDescending ) var ( // functions aliases - NewPostMedia = common.NewPostMedia - ValidateURI = common.ValidateURI - NewPostMedias = common.NewPostMedias - GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue - ParseAnswerID = polls.ParseAnswerID - NewPollAnswer = polls.NewPollAnswer - NewPollAnswers = polls.NewPollAnswers - NewPollData = polls.NewPollData - ArePollDataEquals = polls.ArePollDataEquals - NewUserAnswer = polls.NewUserAnswer - NewUserAnswers = polls.NewUserAnswers - NewPostReaction = reactions.NewPostReaction - NewPostReactions = reactions.NewPostReactions - NewReaction = reactions.NewReaction - IsEmoji = reactions.IsEmoji - NewReactions = reactions.NewReactions - RegisterInvariants = keeper.RegisterInvariants - AllInvariants = keeper.AllInvariants - ValidPostsInvariant = keeper.ValidPostsInvariant - ValidCommentsDateInvariant = keeper.ValidCommentsDateInvariant - ValidPostForReactionsInvariant = keeper.ValidPostForReactionsInvariant - ValidPollForPollAnswersInvariant = keeper.ValidPollForPollAnswersInvariant - NewHandler = keeper.NewHandler - NewKeeper = keeper.NewKeeper - NewQuerier = keeper.NewQuerier - SimulateMsgAnswerToPoll = simulation.SimulateMsgAnswerToPoll - SimulateMsgAddPostReaction = simulation.SimulateMsgAddPostReaction - SimulateMsgRemovePostReaction = simulation.SimulateMsgRemovePostReaction - SimulateMsgRegisterReaction = simulation.SimulateMsgRegisterReaction - SimulateMsgCreatePost = simulation.SimulateMsgCreatePost - SimulateMsgEditPost = simulation.SimulateMsgEditPost - RandomPost = simulation.RandomPost - RandomPostData = simulation.RandomPostData - RandomPostReactionData = simulation.RandomPostReactionData - RandomPostReactionValue = simulation.RandomPostReactionValue - RandomPostID = simulation.RandomPostID - RandomMessage = simulation.RandomMessage - RandomSubspace = simulation.RandomSubspace - RandomHashtag = simulation.RandomHashtag - RandomMedias = simulation.RandomMedias - RandomPollData = simulation.RandomPollData - GetAccount = simulation.GetAccount - RandomReactionValue = simulation.RandomReactionValue - RandomReactionShortCode = simulation.RandomReactionShortCode - RandomReactionData = simulation.RandomReactionData - RegisteredReactionsData = simulation.RegisteredReactionsData - RandomEmojiPostReaction = simulation.RandomEmojiPostReaction - WeightedOperations = simulation.WeightedOperations - RandomizedGenState = simulation.RandomizedGenState - DecodeStore = simulation.DecodeStore - NewPostResponse = types.NewPostResponse - NewMsgRegisterReaction = types.NewMsgRegisterReaction - NewGenesisState = types.NewGenesisState - DefaultGenesisState = types.DefaultGenesisState - ValidateGenesis = types.ValidateGenesis - ComputeID = types.ComputeID - ParsePostID = types.ParsePostID - NewPost = types.NewPost - NewMsgAnswerPoll = types.NewMsgAnswerPoll - NewMsgCreatePost = types.NewMsgCreatePost - NewMsgEditPost = types.NewMsgEditPost - PostStoreKey = types.PostStoreKey - PostCommentsStoreKey = types.PostCommentsStoreKey - PostReactionsStoreKey = types.PostReactionsStoreKey - ReactionsStoreKey = types.ReactionsStoreKey - PollAnswersStoreKey = types.PollAnswersStoreKey - DefaultQueryPostsParams = types.DefaultQueryPostsParams - RegisterCodec = types.RegisterCodec - NewMsgAddPostReaction = types.NewMsgAddPostReaction - NewMsgRemovePostReaction = types.NewMsgRemovePostReaction + NewMsgAnswerPoll = types.NewMsgAnswerPoll + NewMsgCreatePost = types.NewMsgCreatePost + NewMsgEditPost = types.NewMsgEditPost + ComputeID = types.ComputeID + ParsePostID = types.ParsePostID + NewPost = types.NewPost + NewMsgAddPostReaction = types.NewMsgAddPostReaction + NewMsgRemovePostReaction = types.NewMsgRemovePostReaction + NewPostResponse = types.NewPostResponse + PostStoreKey = types.PostStoreKey + PostCommentsStoreKey = types.PostCommentsStoreKey + PostReactionsStoreKey = types.PostReactionsStoreKey + ReactionsStoreKey = types.ReactionsStoreKey + PollAnswersStoreKey = types.PollAnswersStoreKey + NewMsgRegisterReaction = types.NewMsgRegisterReaction + DefaultQueryPostsParams = types.DefaultQueryPostsParams + NewGenesisState = types.NewGenesisState + DefaultGenesisState = types.DefaultGenesisState + ValidateGenesis = types.ValidateGenesis + ParamKeyTable = types.ParamKeyTable + NewParams = types.NewParams + DefaultParams = types.DefaultParams + ValidateMaxPostMessageLengthParam = types.ValidateMaxPostMessageLengthParam + ValidateMaxOptionalDataFieldNumberParam = types.ValidateMaxOptionalDataFieldNumberParam + ValidateMaxOptionalDataFieldValueLengthParam = types.ValidateMaxOptionalDataFieldValueLengthParam + RegisterCodec = types.RegisterCodec + NewPostMedia = common.NewPostMedia + ValidateURI = common.ValidateURI + NewPostMedias = common.NewPostMedias + GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue + ParseAnswerID = polls.ParseAnswerID + NewPollAnswer = polls.NewPollAnswer + NewPollAnswers = polls.NewPollAnswers + NewPollData = polls.NewPollData + ArePollDataEquals = polls.ArePollDataEquals + NewUserAnswer = polls.NewUserAnswer + NewUserAnswers = polls.NewUserAnswers + NewPostReaction = reactions.NewPostReaction + NewPostReactions = reactions.NewPostReactions + NewReaction = reactions.NewReaction + IsEmoji = reactions.IsEmoji + NewReactions = reactions.NewReactions + NewHandler = keeper.NewHandler + ValidatePost = keeper.ValidatePost + NewKeeper = keeper.NewKeeper + NewQuerier = keeper.NewQuerier + RegisterInvariants = keeper.RegisterInvariants + AllInvariants = keeper.AllInvariants + ValidPostsInvariant = keeper.ValidPostsInvariant + ValidCommentsDateInvariant = keeper.ValidCommentsDateInvariant + ValidPostForReactionsInvariant = keeper.ValidPostForReactionsInvariant + ValidPollForPollAnswersInvariant = keeper.ValidPollForPollAnswersInvariant + RandomPost = simulation.RandomPost + RandomPostData = simulation.RandomPostData + RandomPostReactionData = simulation.RandomPostReactionData + RandomPostReactionValue = simulation.RandomPostReactionValue + RandomPostID = simulation.RandomPostID + RandomMessage = simulation.RandomMessage + RandomSubspace = simulation.RandomSubspace + RandomHashtag = simulation.RandomHashtag + RandomMedias = simulation.RandomMedias + RandomPollData = simulation.RandomPollData + GetAccount = simulation.GetAccount + RandomReactionValue = simulation.RandomReactionValue + RandomReactionShortCode = simulation.RandomReactionShortCode + RandomReactionData = simulation.RandomReactionData + RegisteredReactionsData = simulation.RegisteredReactionsData + RandomEmojiPostReaction = simulation.RandomEmojiPostReaction + RandomParams = simulation.RandomParams + WeightedOperations = simulation.WeightedOperations + RandomizedGenState = simulation.RandomizedGenState + ParamChanges = simulation.ParamChanges + DecodeStore = simulation.DecodeStore + SimulateMsgAnswerToPoll = simulation.SimulateMsgAnswerToPoll + SimulateMsgAddPostReaction = simulation.SimulateMsgAddPostReaction + SimulateMsgRemovePostReaction = simulation.SimulateMsgRemovePostReaction + SimulateMsgRegisterReaction = simulation.SimulateMsgRegisterReaction + SimulateMsgCreatePost = simulation.SimulateMsgCreatePost + SimulateMsgEditPost = simulation.SimulateMsgEditPost // variable aliases - Sha256RegEx = common.Sha256RegEx - HashtagRegEx = common.HashtagRegEx - ShortCodeRegEx = common.ShortCodeRegEx - URIRegEx = common.URIRegEx - ModuleAddress = common.ModuleAddress - PostStorePrefix = common.PostStorePrefix - PostCommentsStorePrefix = common.PostCommentsStorePrefix - PostReactionsStorePrefix = common.PostReactionsStorePrefix - ReactionsStorePrefix = common.ReactionsStorePrefix - PollAnswersStorePrefix = common.PollAnswersStorePrefix - RandomMimeTypes = simulation.RandomMimeTypes - RandomHosts = simulation.RandomHosts - ModuleCdc = types.ModuleCdc + DefaultMaxPostMessageLength = types.DefaultMaxPostMessageLength + DefaultMaxOptionalDataFieldsNumber = types.DefaultMaxOptionalDataFieldsNumber + DefaultMaxOptionalDataFieldValueLength = types.DefaultMaxOptionalDataFieldValueLength + MaxPostMessageLengthKey = types.MaxPostMessageLengthKey + MaxOptionalDataFieldsNumberKey = types.MaxOptionalDataFieldsNumberKey + MaxOptionalDataFieldValueLengthKey = types.MaxOptionalDataFieldValueLengthKey + ModuleCdc = types.ModuleCdc + Sha256RegEx = common.Sha256RegEx + HashtagRegEx = common.HashtagRegEx + ShortCodeRegEx = common.ShortCodeRegEx + URIRegEx = common.URIRegEx + ModuleAddress = common.ModuleAddress + PostStorePrefix = common.PostStorePrefix + PostCommentsStorePrefix = common.PostCommentsStorePrefix + PostReactionsStorePrefix = common.PostReactionsStorePrefix + ReactionsStorePrefix = common.ReactionsStorePrefix + PollAnswersStorePrefix = common.PollAnswersStorePrefix + RandomMimeTypes = simulation.RandomMimeTypes + RandomHosts = simulation.RandomHosts ) type ( - Keeper = keeper.Keeper - PostData = simulation.PostData - PostReactionData = simulation.PostReactionData - ReactionData = simulation.ReactionData - PostQueryResponse = types.PostQueryResponse - MsgRegisterReaction = types.MsgRegisterReaction - GenesisState = types.GenesisState + MsgAnswerPoll = types.MsgAnswerPoll + PollAnswersQueryResponse = types.PollAnswersQueryResponse + MsgCreatePost = types.MsgCreatePost + MsgEditPost = types.MsgEditPost PostID = types.PostID PostIDs = types.PostIDs Post = types.Post Posts = types.Posts - MsgAnswerPoll = types.MsgAnswerPoll - MsgCreatePost = types.MsgCreatePost - MsgEditPost = types.MsgEditPost - QueryPostsParams = types.QueryPostsParams MsgAddPostReaction = types.MsgAddPostReaction MsgRemovePostReaction = types.MsgRemovePostReaction - PollAnswersQueryResponse = types.PollAnswersQueryResponse + PostQueryResponse = types.PostQueryResponse + MsgRegisterReaction = types.MsgRegisterReaction + QueryPostsParams = types.QueryPostsParams + GenesisState = types.GenesisState + Params = types.Params PostMedia = common.PostMedia PostMedias = common.PostMedias OptionalData = common.OptionalData @@ -184,4 +195,8 @@ type ( PostReactions = reactions.PostReactions Reaction = reactions.Reaction Reactions = reactions.Reactions + Keeper = keeper.Keeper + PostData = simulation.PostData + PostReactionData = simulation.PostReactionData + ReactionData = simulation.ReactionData ) diff --git a/x/posts/client/cli/query.go b/x/posts/client/cli/query.go index 43ffa439b6..f224f0daf5 100644 --- a/x/posts/client/cli/query.go +++ b/x/posts/client/cli/query.go @@ -32,6 +32,7 @@ func GetQueryCmd(cdc *codec.Codec) *cobra.Command { GetCmdQueryPosts(cdc), GetCmdQueryPollAnswer(cdc), GetCmdQueryRegisteredReactions(cdc), + GetCmdQueryPostsParams(cdc), )...) return postQueryCmd } @@ -226,3 +227,26 @@ func GetCmdQueryRegisteredReactions(cdc *codec.Codec) *cobra.Command { }, } } + +// GetCmdQueryPostsParams queries all the posts' module params +func GetCmdQueryPostsParams(cdc *codec.Codec) *cobra.Command { + return &cobra.Command{ + Use: "params", + Short: "Retrieve all the posts module params", + Args: cobra.ExactArgs(0), + RunE: func(cmd *cobra.Command, args []string) error { + cliCtx := context.NewCLIContext().WithCodec(cdc) + + route := fmt.Sprintf("custom/%s/%s", types.QuerierRoute, types.QueryParams) + res, _, err := cliCtx.QueryWithData(route, nil) + if err != nil { + fmt.Printf("Could not find profile params") + return nil + } + + var out types.Params + cdc.MustUnmarshalJSON(res, &out) + return cliCtx.PrintOutput(out) + }, + } +} diff --git a/x/posts/client/rest/query.go b/x/posts/client/rest/query.go index 1983b29b7d..d1298a61e6 100644 --- a/x/posts/client/rest/query.go +++ b/x/posts/client/rest/query.go @@ -32,6 +32,7 @@ func registerQueryRoutes(cliCtx context.CLIContext, r *mux.Router) { r.HandleFunc("/posts", queryPostsWithParameterHandlerFn(cliCtx)).Methods("GET") r.HandleFunc("/posts/{postID}/poll-answers", queryPostPollAnswersHandlerFn(cliCtx)).Methods("GET") r.HandleFunc("/registeredReactions", queryRegisteredReactions(cliCtx)).Methods("GET") + r.HandleFunc("/posts/params", queryPostsParamsHandlerFn(cliCtx)).Methods("GET") } // HTTP request handler to query a single post based on its ID @@ -166,3 +167,17 @@ func queryRegisteredReactions(cliCtx context.CLIContext) http.HandlerFunc { rest.PostProcessResponse(w, cliCtx, res) } } + +// HTTP request handler to query list of posts' module params +func queryPostsParamsHandlerFn(cliCtx context.CLIContext) http.HandlerFunc { + return func(w http.ResponseWriter, r *http.Request) { + route := fmt.Sprintf("custom/%s/%s", types.QuerierRoute, types.QueryParams) + res, _, err := cliCtx.QueryWithData(route, nil) + if err != nil { + rest.WriteErrorResponse(w, http.StatusNotFound, err.Error()) + return + } + + rest.PostProcessResponse(w, cliCtx, res) + } +} diff --git a/x/posts/genesis.go b/x/posts/genesis.go index 78660d7deb..de5921cb1b 100644 --- a/x/posts/genesis.go +++ b/x/posts/genesis.go @@ -5,6 +5,7 @@ import ( "sort" sdk "github.com/cosmos/cosmos-sdk/types" + params "github.com/desmos-labs/desmos/x/posts/internal/keeper" "github.com/desmos-labs/desmos/x/posts/internal/types" abci "github.com/tendermint/tendermint/abci/types" ) @@ -25,6 +26,9 @@ func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.Valid // Sort the posts so that they are inserted based on their IDs sort.Sort(data.Posts) for _, post := range data.Posts { + if err := params.ValidatePost(ctx, keeper, post); err != nil { + panic(err) + } keeper.SavePost(ctx, post) } diff --git a/x/posts/internal/keeper/common_test.go b/x/posts/internal/keeper/common_test.go index be6f911245..bb2b311afc 100644 --- a/x/posts/internal/keeper/common_test.go +++ b/x/posts/internal/keeper/common_test.go @@ -6,6 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/store" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/x/params" "github.com/desmos-labs/desmos/x/posts/internal/keeper" "github.com/desmos-labs/desmos/x/posts/internal/types" "github.com/desmos-labs/desmos/x/posts/internal/types/common" @@ -19,11 +20,15 @@ func SetupTestInput() (sdk.Context, keeper.Keeper) { // define store keys postKey := sdk.NewKVStoreKey(common.StoreKey) + paramsKey := sdk.NewKVStoreKey("params") + paramsTKey := sdk.NewTransientStoreKey("transient_params") // create an in-memory db memDB := db.NewMemDB() ms := store.NewCommitMultiStore(memDB) ms.MountStoreWithDB(postKey, sdk.StoreTypeIAVL, memDB) + ms.MountStoreWithDB(paramsKey, sdk.StoreTypeIAVL, memDB) + ms.MountStoreWithDB(paramsTKey, sdk.StoreTypeTransient, memDB) if err := ms.LoadLatestVersion(); err != nil { panic(err) } @@ -32,7 +37,11 @@ func SetupTestInput() (sdk.Context, keeper.Keeper) { cdc := testCodec() ctx := sdk.NewContext(ms, abci.Header{ChainID: "test-chain-id"}, false, log.NewNopLogger()) - return ctx, keeper.NewKeeper(cdc, postKey) + // define keepers + paramsKeeper := params.NewKeeper(cdc, paramsKey, paramsTKey) + subspace := paramsKeeper.Subspace(types.DefaultParamspace) + + return ctx, keeper.NewKeeper(cdc, postKey, subspace) } func testCodec() *codec.Codec { diff --git a/x/posts/internal/keeper/handler.go b/x/posts/internal/keeper/handler.go index 78e6ef9620..c95ccb872f 100644 --- a/x/posts/internal/keeper/handler.go +++ b/x/posts/internal/keeper/handler.go @@ -35,6 +35,35 @@ func NewHandler(keeper Keeper) sdk.Handler { } } +// ValidatePost checks if the given post is valid according to the current posts' module params +func ValidatePost(ctx sdk.Context, k Keeper, post types.Post) error { + params := k.GetParams(ctx) + maxMsgLen := params.MaxPostMessageLength.Int64() + maxOpFieldNum := params.MaxOptionalDataFieldsNumber.Int64() + maxOpFieldValLen := params.MaxOptionalDataFieldValueLength.Int64() + + if len(post.Message) > int(maxMsgLen) { + return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, + fmt.Sprintf("Post message cannot exceed %d characters", maxMsgLen)) + } + + if len(post.OptionalData) > int(maxOpFieldNum) { + return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, + fmt.Sprintf("Post optional data cannot contain more than %d key-value pairs", + maxOpFieldNum)) + } + + for key, value := range post.OptionalData { + if len(value) > int(maxOpFieldValLen) { + return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, + fmt.Sprintf("post optional data values cannot exceed %d characters. %s of post with id %s is longer than this", + maxOpFieldValLen, key, post.PostID)) + } + } + + return nil +} + // handleMsgCreatePost handles the creation of a new post func handleMsgCreatePost(ctx sdk.Context, keeper Keeper, msg types.MsgCreatePost) (*sdk.Result, error) { post := types.NewPost( @@ -69,6 +98,10 @@ func handleMsgCreatePost(ctx sdk.Context, keeper Keeper, msg types.MsgCreatePost } } + if err := ValidatePost(ctx, keeper, post); err != nil { + return nil, err + } + keeper.SavePost(ctx, post) createEvent := sdk.NewEvent( @@ -109,6 +142,10 @@ func handleMsgEditPost(ctx sdk.Context, keeper Keeper, msg types.MsgEditPost) (* // Edit the post existing.Message = msg.Message existing.LastEdited = msg.EditDate + + if err := ValidatePost(ctx, keeper, existing); err != nil { + return nil, err + } keeper.SavePost(ctx, existing) editEvent := sdk.NewEvent( diff --git a/x/posts/internal/keeper/handler_test.go b/x/posts/internal/keeper/handler_test.go index b0c26bd06a..1058d0046b 100644 --- a/x/posts/internal/keeper/handler_test.go +++ b/x/posts/internal/keeper/handler_test.go @@ -2,7 +2,9 @@ package keeper_test import ( "fmt" + "strings" "testing" + "time" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" @@ -12,6 +14,104 @@ import ( "github.com/stretchr/testify/require" ) +func TestValidatePost(t *testing.T) { + id := types.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") + id2 := types.PostID("e1ba4807a15d8579f79cfd90a07fc015e6125565c9271eb94aded0b2ebf86163") + owner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") + require.NoError(t, err) + + timeZone, err := time.LoadLocation("UTC") + require.NoError(t, err) + + date := time.Date(2020, 1, 1, 12, 00, 00, 000, timeZone) + + tests := []struct { + name string + post types.Post + expError error + }{ + { + name: "Post message cannot be longer than 500 characters", + post: types.NewPost( + id, + id2, + strings.Repeat("a", 550), + true, + "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + map[string]string{}, + date, + owner, + ), + expError: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post message cannot exceed 500 characters"), + }, + { + name: "post optional data cannot contain more than 10 key-value", + post: types.NewPost( + id, + id2, + "Message", + true, + "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + map[string]string{ + "key1": "value", + "key2": "value", + "key3": "value", + "key4": "value", + "key5": "value", + "key6": "value", + "key7": "value", + "key8": "value", + "key9": "value", + "key10": "value", + "key11": "value", + }, + date, + owner, + ), + expError: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, + "Post optional data cannot contain more than 10 key-value pairs"), + }, + { + name: "post optional data values cannot exceed 200 characters", + post: types.NewPost( + id, + id2, + "Message", + true, + "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + map[string]string{ + "key1": `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque euismod, mi at commodo + efficitur, quam sapien congue enim, ut porttitor lacus tellus vitae turpis. Vivamus aliquam + sem eget neque metus.`, + }, + date, + owner, + ), + expError: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, + "post optional data values cannot exceed 200 characters. key1 of post with id dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1 is longer than this"), + }, + { + name: "Valid post without poll data", + post: types.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner), + expError: nil, + }, + } + + for _, test := range tests { + test := test + t.Run(test.name, func(t *testing.T) { + ctx, k := SetupTestInput() + k.SetParams(ctx, types.DefaultParams()) + err := keeper.ValidatePost(ctx, k, test.post) + if test.expError != nil { + require.Equal(t, test.expError.Error(), err.Error()) + } else { + require.Equal(t, test.expError, err) + } + }) + } +} + // --------------------------- // --- handleMsgCreatePost // --------------------------- @@ -157,6 +257,7 @@ func Test_handleMsgCreatePost(t *testing.T) { test := test t.Run(test.name, func(t *testing.T) { ctx, k := SetupTestInput() + k.SetParams(ctx, types.DefaultParams()) store := ctx.KVStore(k.StoreKey) for _, p := range test.storedPosts { @@ -252,6 +353,7 @@ func Test_handleMsgEditPost(t *testing.T) { test := test t.Run(test.name, func(t *testing.T) { ctx, k := SetupTestInput() + k.SetParams(ctx, types.DefaultParams()) store := ctx.KVStore(k.StoreKey) if test.storedPost != nil { diff --git a/x/posts/internal/keeper/invariants.go b/x/posts/internal/keeper/invariants.go index d07b578b71..ea8a19ce91 100644 --- a/x/posts/internal/keeper/invariants.go +++ b/x/posts/internal/keeper/invariants.go @@ -55,7 +55,7 @@ func ValidPostsInvariant(k Keeper) sdk.Invariant { return func(ctx sdk.Context) (string, bool) { var invalidPostIDs types.PostIDs k.IteratePosts(ctx, func(_ int64, post types.Post) (stop bool) { - if post.Validate() != nil { + if post.Validate() != nil || ValidatePost(ctx, k, post) != nil { invalidPostIDs = append(invalidPostIDs, post.PostID) } return false diff --git a/x/posts/internal/keeper/invariants_test.go b/x/posts/internal/keeper/invariants_test.go index a333a83779..7b6f5ac180 100644 --- a/x/posts/internal/keeper/invariants_test.go +++ b/x/posts/internal/keeper/invariants_test.go @@ -64,7 +64,7 @@ func TestInvariants(t *testing.T) { expBool: true, }, { - name: "ValidPosts Invariants violated", + name: "Posts Invariants violated", posts: types.Posts{types.NewPost( "1234", "", @@ -124,6 +124,7 @@ func TestInvariants(t *testing.T) { test := test t.Run(test.name, func(t *testing.T) { ctx, k := SetupTestInput() + k.SetParams(ctx, types.DefaultParams()) for _, post := range test.posts { k.SavePost(ctx, post) } diff --git a/x/posts/internal/keeper/keeper.go b/x/posts/internal/keeper/keeper.go index 110869a467..ddefac2d38 100644 --- a/x/posts/internal/keeper/keeper.go +++ b/x/posts/internal/keeper/keeper.go @@ -3,24 +3,32 @@ package keeper import ( "sort" - sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" + sdk "github.com/cosmos/cosmos-sdk/types" + params "github.com/cosmos/cosmos-sdk/x/params/subspace" "github.com/desmos-labs/desmos/x/posts/internal/types" ) // Keeper maintains the link to data storage and exposes getter/setter methods for the various parts of the state machine type Keeper struct { + // The reference to the ParamsStore to get and set posts specific params + paramSubspace params.Subspace + StoreKey sdk.StoreKey // Unexposed key to access store from sdk.Context Cdc *codec.Codec // The wire codec for binary encoding/decoding. } // NewKeeper creates new instances of the magpie Keeper -func NewKeeper(cdc *codec.Codec, storeKey sdk.StoreKey) Keeper { +func NewKeeper(cdc *codec.Codec, storeKey sdk.StoreKey, paramSpace params.Subspace) Keeper { + if !paramSpace.HasKeyTable() { + paramSpace = paramSpace.WithKeyTable(types.ParamKeyTable()) + } + return Keeper{ - StoreKey: storeKey, - Cdc: cdc, + StoreKey: storeKey, + Cdc: cdc, + paramSubspace: paramSpace, } } diff --git a/x/posts/internal/keeper/params.go b/x/posts/internal/keeper/params.go new file mode 100644 index 0000000000..13e2fcc99f --- /dev/null +++ b/x/posts/internal/keeper/params.go @@ -0,0 +1,17 @@ +package keeper + +import ( + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/desmos-labs/desmos/x/posts/internal/types" +) + +// SetParams sets params on the store +func (k Keeper) SetParams(ctx sdk.Context, params types.Params) { + k.paramSubspace.SetParamSet(ctx, ¶ms) +} + +// GetParams returns the params from the store +func (k Keeper) GetParams(ctx sdk.Context) (p types.Params) { + k.paramSubspace.GetParamSet(ctx, &p) + return p +} diff --git a/x/posts/internal/keeper/params_test.go b/x/posts/internal/keeper/params_test.go new file mode 100644 index 0000000000..177ac5cde1 --- /dev/null +++ b/x/posts/internal/keeper/params_test.go @@ -0,0 +1,60 @@ +package keeper_test + +import ( + "testing" + + "github.com/desmos-labs/desmos/x/posts/internal/types" + "github.com/stretchr/testify/require" +) + +func TestKeeper_SetParams(t *testing.T) { + ctx, k := SetupTestInput() + + params := types.DefaultParams() + k.SetParams(ctx, params) + + actualParams := k.GetParams(ctx) + + require.Equal(t, params, actualParams) +} + +func TestKeeper_GetParams(t *testing.T) { + ctx, k := SetupTestInput() + + params := types.DefaultParams() + k.SetParams(ctx, params) + + actualParams := k.GetParams(ctx) + + require.Equal(t, params, actualParams) + + tests := []struct { + name string + params *types.Params + expParams *types.Params + }{ + { + name: "Returning previously set params", + params: ¶ms, + expParams: ¶ms, + }, + { + name: "Returning nothing", + params: nil, + expParams: nil, + }, + } + + for _, test := range tests { + test := test + t.Run(test.name, func(t *testing.T) { + if test.params != nil { + k.SetParams(ctx, *test.params) + } + + if test.expParams != nil { + require.Equal(t, *test.expParams, k.GetParams(ctx)) + } + }) + } +} diff --git a/x/posts/internal/keeper/querier.go b/x/posts/internal/keeper/querier.go index 5ba1a819d5..9965d5ea96 100644 --- a/x/posts/internal/keeper/querier.go +++ b/x/posts/internal/keeper/querier.go @@ -26,6 +26,8 @@ func NewQuerier(keeper Keeper) sdk.Querier { case types.QueryRegisteredReactions: return queryRegisteredReactions(ctx, req, keeper) + case types.QueryParams: + return queryParams(ctx, req, keeper) default: return nil, fmt.Errorf("unknown post query endpoint") } @@ -144,3 +146,14 @@ func queryRegisteredReactions(ctx sdk.Context, _ abci.RequestQuery, keeper Keepe return bz, nil } + +func queryParams(ctx sdk.Context, _ abci.RequestQuery, keeper Keeper) ([]byte, error) { + params := keeper.GetParams(ctx) + + bz, err := codec.MarshalJSONIndent(keeper.Cdc, ¶ms) + if err != nil { + panic("could not marshal result to JSON") + } + + return bz, nil +} diff --git a/x/posts/internal/keeper/querier_test.go b/x/posts/internal/keeper/querier_test.go index 5d048837eb..4b73667d1d 100644 --- a/x/posts/internal/keeper/querier_test.go +++ b/x/posts/internal/keeper/querier_test.go @@ -488,3 +488,35 @@ func Test_queryRegisteredReactions(t *testing.T) { }) } } + +func Test_queryParams(t *testing.T) { + tests := []struct { + name string + path []string + expResult types.Params + }{ + { + name: "Returning profile parameters correctly", + path: []string{types.QueryParams}, + expResult: types.DefaultParams(), + }, + } + + for _, test := range tests { + test := test + t.Run(test.name, func(t *testing.T) { + ctx, k := SetupTestInput() + k.SetParams(ctx, types.DefaultParams()) + querier := keeper.NewQuerier(k) + result, err := querier(ctx, test.path, abci.RequestQuery{}) + + if result != nil { + require.Nil(t, err) + expectedIndented, err := codec.MarshalJSONIndent(k.Cdc, &test.expResult) + require.NoError(t, err) + require.Equal(t, string(expectedIndented), string(result)) + } + + }) + } +} diff --git a/x/posts/internal/simulation/genesis.go b/x/posts/internal/simulation/genesis.go index 7825722591..641b49f379 100644 --- a/x/posts/internal/simulation/genesis.go +++ b/x/posts/internal/simulation/genesis.go @@ -3,6 +3,9 @@ package simulation // DONTCOVER import ( + "fmt" + + "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" "github.com/desmos-labs/desmos/x/posts/internal/types" @@ -19,7 +22,15 @@ func RandomizedGenState(simState *module.SimulationState) { posts := randomPosts(simState) postReactions := randomPostReactions(simState, posts) registeredReactions := registeredReactions(simState) - postsGenesis := types.NewGenesisState(posts, postReactions, registeredReactions) + params := randomParams(simState) + postsGenesis := types.NewGenesisState(posts, postReactions, registeredReactions, params) + + fmt.Printf("Selected randomly generated posts parameters:\n%s\n%s\n%s\n", + codec.MustMarshalJSONIndent(simState.Cdc, postsGenesis.Params.MaxPostMessageLength), + codec.MustMarshalJSONIndent(simState.Cdc, postsGenesis.Params.MaxOptionalDataFieldsNumber), + codec.MustMarshalJSONIndent(simState.Cdc, postsGenesis.Params.MaxOptionalDataFieldValueLength), + ) + simState.GenState[types.ModuleName] = simState.Cdc.MustMarshalJSON(postsGenesis) } @@ -85,3 +96,7 @@ func registeredReactions(simState *module.SimulationState) types.Reactions { } return regReactions } + +func randomParams(simState *module.SimulationState) types.Params { + return RandomParams(simState.Rand) +} diff --git a/x/posts/internal/simulation/params.go b/x/posts/internal/simulation/params.go new file mode 100644 index 0000000000..ac78565ce6 --- /dev/null +++ b/x/posts/internal/simulation/params.go @@ -0,0 +1,32 @@ +package simulation + +import ( + "fmt" + "math/rand" + + "github.com/cosmos/cosmos-sdk/x/simulation" + "github.com/desmos-labs/desmos/x/posts/internal/types" +) + +func ParamChanges(r *rand.Rand) []simulation.ParamChange { + params := RandomParams(r) + return []simulation.ParamChange{ + simulation.NewSimParamChange(types.ModuleName, string(types.MaxPostMessageLengthKey), + func(r *rand.Rand) string { + return fmt.Sprintf(`{"max_post_message_length":"%s"`, + params.MaxPostMessageLength) + }, + ), + simulation.NewSimParamChange(types.ModuleName, string(types.MaxOptionalDataFieldsNumberKey), + func(r *rand.Rand) string { + return fmt.Sprintf(`{"max_optional_data_fields_number":"%s"`, + params.MaxOptionalDataFieldsNumber) + }, + ), + simulation.NewSimParamChange(types.ModuleName, string(types.MaxOptionalDataFieldValueLengthKey), + func(r *rand.Rand) string { + return fmt.Sprintf(`{"max_optional_data_field_value_length":"%s"}`, params.MaxOptionalDataFieldValueLength) + }, + ), + } +} diff --git a/x/posts/internal/simulation/utils.go b/x/posts/internal/simulation/utils.go index f9457ff168..0ed50d0d41 100644 --- a/x/posts/internal/simulation/utils.go +++ b/x/posts/internal/simulation/utils.go @@ -246,3 +246,11 @@ func RandomEmojiPostReaction(r *rand.Rand) types.PostReaction { rEmoji := emoji.EmojisList[r.Intn(len(emoji.EmojisList))] return types.NewPostReaction(rEmoji.Shortcodes[0], rEmoji.Value, creator) } + +func RandomParams(r *rand.Rand) types.Params { + return types.Params{ + MaxPostMessageLength: sdk.NewInt(int64(r.Intn(1000))), + MaxOptionalDataFieldsNumber: sdk.NewInt(int64(r.Intn(50))), + MaxOptionalDataFieldValueLength: sdk.NewInt(int64(r.Intn(200))), + } +} diff --git a/x/posts/internal/types/alias.go b/x/posts/internal/types/alias.go index c47d0cb7a7..034d9bae52 100644 --- a/x/posts/internal/types/alias.go +++ b/x/posts/internal/types/alias.go @@ -11,35 +11,33 @@ import ( ) const ( - ModuleName = common.ModuleName - RouterKey = common.RouterKey - StoreKey = common.StoreKey - MaxPostMessageLength = common.MaxPostMessageLength - MaxOptionalDataFieldsNumber = common.MaxOptionalDataFieldsNumber - MaxOptionalDataFieldValueLength = common.MaxOptionalDataFieldValueLength - ActionCreatePost = common.ActionCreatePost - ActionEditPost = common.ActionEditPost - ActionAnswerPoll = common.ActionAnswerPoll - ActionAddPostReaction = common.ActionAddPostReaction - ActionRemovePostReaction = common.ActionRemovePostReaction - ActionRegisterReaction = common.ActionRegisterReaction - QuerierRoute = common.QuerierRoute - QueryPost = common.QueryPost - QueryPosts = common.QueryPosts - QueryPollAnswers = common.QueryPollAnswers - QueryRegisteredReactions = common.QueryRegisteredReactions - PostSortByCreationDate = common.PostSortByCreationDate - PostSortByID = common.PostSortByID - PostSortOrderAscending = common.PostSortOrderAscending - PostSortOrderDescending = common.PostSortOrderDescending + ModuleName = common.ModuleName + RouterKey = common.RouterKey + StoreKey = common.StoreKey + ActionCreatePost = common.ActionCreatePost + ActionEditPost = common.ActionEditPost + ActionAnswerPoll = common.ActionAnswerPoll + ActionAddPostReaction = common.ActionAddPostReaction + ActionRemovePostReaction = common.ActionRemovePostReaction + ActionRegisterReaction = common.ActionRegisterReaction + QuerierRoute = common.QuerierRoute + QueryPost = common.QueryPost + QueryPosts = common.QueryPosts + QueryPollAnswers = common.QueryPollAnswers + QueryRegisteredReactions = common.QueryRegisteredReactions + QueryParams = common.QueryParams + PostSortByCreationDate = common.PostSortByCreationDate + PostSortByID = common.PostSortByID + PostSortOrderAscending = common.PostSortOrderAscending + PostSortOrderDescending = common.PostSortOrderDescending ) var ( // functions aliases + GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue NewPostMedia = common.NewPostMedia ValidateURI = common.ValidateURI NewPostMedias = common.NewPostMedias - GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue ParseAnswerID = polls.ParseAnswerID NewPollAnswer = polls.NewPollAnswer NewPollAnswers = polls.NewPollAnswers @@ -67,10 +65,10 @@ var ( ) type ( - PostMedia = common.PostMedia - PostMedias = common.PostMedias OptionalData = common.OptionalData KeyValue = common.KeyValue + PostMedia = common.PostMedia + PostMedias = common.PostMedias AnswerID = polls.AnswerID PollAnswer = polls.PollAnswer PollAnswers = polls.PollAnswers diff --git a/x/posts/internal/types/common/keys.go b/x/posts/internal/types/common/keys.go index 8ad28fc14f..a8b27ce459 100644 --- a/x/posts/internal/types/common/keys.go +++ b/x/posts/internal/types/common/keys.go @@ -11,10 +11,6 @@ const ( RouterKey = ModuleName StoreKey = ModuleName - MaxPostMessageLength = 500 - MaxOptionalDataFieldsNumber = 10 - MaxOptionalDataFieldValueLength = 200 - ActionCreatePost = "create_post" ActionEditPost = "edit_post" ActionAnswerPoll = "answer_poll" @@ -28,6 +24,7 @@ const ( QueryPosts = "posts" QueryPollAnswers = "poll-answers" QueryRegisteredReactions = "registered-reactions" + QueryParams = "params" // Sorting PostSortByCreationDate = "created" diff --git a/x/posts/internal/types/genesis.go b/x/posts/internal/types/genesis.go index 0d88ab030a..cc29e73843 100644 --- a/x/posts/internal/types/genesis.go +++ b/x/posts/internal/types/genesis.go @@ -6,20 +6,24 @@ type GenesisState struct { UsersPollAnswers map[string]UserAnswers `json:"users_poll_answers"` PostReactions map[string]PostReactions `json:"post_reactions"` RegisteredReactions Reactions `json:"registered_reactions"` + Params Params `json:"params"` } // NewGenesisState creates a new genesis state -func NewGenesisState(posts Posts, postReactions map[string]PostReactions, registeredR Reactions) GenesisState { +func NewGenesisState(posts Posts, postReactions map[string]PostReactions, registeredR Reactions, params Params) GenesisState { return GenesisState{ Posts: posts, PostReactions: postReactions, RegisteredReactions: registeredR, + Params: params, } } // DefaultGenesisState returns a default GenesisState func DefaultGenesisState() GenesisState { - return GenesisState{} + return GenesisState{ + Params: DefaultParams(), + } } // ValidateGenesis validates the given genesis state and returns an error if something is invalid @@ -52,5 +56,9 @@ func ValidateGenesis(data GenesisState) error { } } + if err := data.Params.Validate(); err != nil { + return err + } + return nil } diff --git a/x/posts/internal/types/genesis_test.go b/x/posts/internal/types/genesis_test.go index 1c09e06cc7..8876675a57 100644 --- a/x/posts/internal/types/genesis_test.go +++ b/x/posts/internal/types/genesis_test.go @@ -28,6 +28,7 @@ func TestValidateGenesis(t *testing.T) { genesis: types.GenesisState{ Posts: types.Posts{types.Post{PostID: types.PostID("")}}, PostReactions: map[string]types.PostReactions{}, + Params: types.DefaultParams(), }, shouldError: true, }, @@ -38,6 +39,7 @@ func TestValidateGenesis(t *testing.T) { PostReactions: map[string]types.PostReactions{ "1": {types.PostReaction{Owner: nil}}, }, + Params: types.DefaultParams(), }, shouldError: true, }, @@ -51,6 +53,7 @@ func TestValidateGenesis(t *testing.T) { }, }, PostReactions: map[string]types.PostReactions{}, + Params: types.DefaultParams(), }, shouldError: true, }, @@ -60,6 +63,22 @@ func TestValidateGenesis(t *testing.T) { Posts: types.Posts{}, RegisteredReactions: types.Reactions{types.NewReaction(user, ":smile", "smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e")}, + Params: types.DefaultParams(), + }, + shouldError: true, + }, + { + name: "Genesis with invalid params returns errors", + genesis: types.GenesisState{ + Posts: types.Posts{}, + RegisteredReactions: types.Reactions{}, + PostReactions: map[string]types.PostReactions{}, + UsersPollAnswers: map[string]types.UserAnswers{}, + Params: types.Params{ + MaxPostMessageLength: sdk.NewInt(-1), + MaxOptionalDataFieldsNumber: sdk.NewInt(-1), + MaxOptionalDataFieldValueLength: sdk.NewInt(-1), + }, }, shouldError: true, }, diff --git a/x/posts/internal/types/msg_reactions_test.go b/x/posts/internal/types/msg_reactions_test.go index 1f1a57d180..13e5822e8f 100644 --- a/x/posts/internal/types/msg_reactions_test.go +++ b/x/posts/internal/types/msg_reactions_test.go @@ -2,12 +2,11 @@ package types_test import ( "fmt" - "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" - "github.com/stretchr/testify/require" - sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/desmos-labs/desmos/x/posts/internal/types" + "github.com/stretchr/testify/require" ) var msgRegisterReaction = types.NewMsgRegisterReaction(testOwner, ":smile:", "https://smile.jpg", diff --git a/x/posts/internal/types/msgs.go b/x/posts/internal/types/msgs.go index 906c3fb963..ff6840710a 100644 --- a/x/posts/internal/types/msgs.go +++ b/x/posts/internal/types/msgs.go @@ -60,29 +60,10 @@ func (msg MsgCreatePost) ValidateBasic() error { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post message, medias or poll are required and cannot be all blank or empty") } - if len(msg.Message) > MaxPostMessageLength { - return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, - fmt.Sprintf("Post message cannot exceed %d characters", MaxPostMessageLength)) - } - if !Sha256RegEx.MatchString(msg.Subspace) { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post subspace must be a valid sha-256 hash") } - if len(msg.OptionalData) > MaxOptionalDataFieldsNumber { - return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, - fmt.Sprintf("Post optional data cannot be longer than %d fields", - MaxOptionalDataFieldsNumber)) - } - - for key, value := range msg.OptionalData { - if len(value) > MaxOptionalDataFieldValueLength { - return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, - fmt.Sprintf("Post optional data value lengths cannot be longer than %d. %s exceeds the limit", - MaxOptionalDataFieldValueLength, key)) - } - } - if msg.CreationDate.IsZero() { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid post creation date") } diff --git a/x/posts/internal/types/msgs_polls_test.go b/x/posts/internal/types/msgs_polls_test.go index 5c911ac289..0340b6d14c 100644 --- a/x/posts/internal/types/msgs_polls_test.go +++ b/x/posts/internal/types/msgs_polls_test.go @@ -1,10 +1,10 @@ package types_test import ( - "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/desmos-labs/desmos/x/posts/internal/types" "github.com/stretchr/testify/require" ) diff --git a/x/posts/internal/types/msgs_post_reactions_test.go b/x/posts/internal/types/msgs_post_reactions_test.go index a2be3ffe58..3d7f1d2d59 100644 --- a/x/posts/internal/types/msgs_post_reactions_test.go +++ b/x/posts/internal/types/msgs_post_reactions_test.go @@ -1,11 +1,11 @@ package types_test import ( - "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" emoji2 "github.com/desmos-labs/Go-Emoji-Utils" + "github.com/desmos-labs/desmos/x/posts/internal/types" "github.com/stretchr/testify/require" ) diff --git a/x/posts/internal/types/msgs_test.go b/x/posts/internal/types/msgs_test.go index d59755521b..464ab5637c 100644 --- a/x/posts/internal/types/msgs_test.go +++ b/x/posts/internal/types/msgs_test.go @@ -1,12 +1,12 @@ package types_test import ( - "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" "time" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/desmos-labs/desmos/x/posts/internal/types" "github.com/stretchr/testify/require" ) @@ -165,27 +165,6 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { ), error: nil, }, - { - name: "Very long message returns error", - msg: types.NewMsgCreatePost( - ` - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque massa felis, aliquam sed ipsum at, - mollis pharetra quam. Vestibulum nec nulla ante. Praesent sed dignissim turpis. Curabitur aliquam nunc - eu nisi porta, eu gravida purus faucibus. Duis commodo sagittis lacus, vitae luctus enim vulputate a. - Nulla tempor eget nunc vitae vulputate. Nulla facilities. Donec sollicitudin odio in arcu efficitur, - sit amet vestibulum diam ullamcorper. Ut ac dolor in velit gravida efficitur et et erat volutpat. - `, - "", - false, - "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", - map[string]string{}, - creator, - date, - msgCreatePost.Medias, - msgCreatePost.PollData, - ), - error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post message cannot exceed 500 characters"), - }, { name: "Empty subspace returns error", msg: types.NewMsgCreatePost( @@ -201,50 +180,6 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { ), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post subspace must be a valid sha-256 hash"), }, - { - name: "More than 10 optional data returns error", - msg: types.NewMsgCreatePost( - "My message", - "", - false, - "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", - map[string]string{ - "key1": "value1", - "key2": "value2", - "key3": "value3", - "key4": "value4", - "key5": "value5", - "key6": "value6", - "key7": "value7", - "key8": "value8", - "key9": "value9", - "key10": "value10", - "key11": "value11", - }, - creator, - date, - msgCreatePost.Medias, - msgCreatePost.PollData, - ), - error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post optional data cannot be longer than 10 fields"), - }, - { - name: "Optional data longer than 200 characters returns error", - msg: types.NewMsgCreatePost( - "My message", - "", - false, - "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", - map[string]string{ - "key1": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac ullamcorper dui, a mattis sapien. Vivamus sed massa eget felis hendrerit ultrices. Morbi pretium hendrerit nisi quis faucibus volutpat.", - }, - creator, - date, - msgCreatePost.Medias, - msgCreatePost.PollData, - ), - error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post optional data value lengths cannot be longer than 200. key1 exceeds the limit"), - }, { name: "Future creation date returns error", msg: types.NewMsgCreatePost( diff --git a/x/posts/internal/types/params.go b/x/posts/internal/types/params.go new file mode 100644 index 0000000000..e895b38f2e --- /dev/null +++ b/x/posts/internal/types/params.go @@ -0,0 +1,138 @@ +package types + +import ( + "fmt" + "strings" + + sdk "github.com/cosmos/cosmos-sdk/types" + paramsModule "github.com/cosmos/cosmos-sdk/x/params/subspace" +) + +const ( + // default paramspace for paramsModule keeper + DefaultParamspace = ModuleName +) + +// Default profile paramsModule +var ( + DefaultMaxPostMessageLength = sdk.NewInt(500) + DefaultMaxOptionalDataFieldsNumber = sdk.NewInt(10) + DefaultMaxOptionalDataFieldValueLength = sdk.NewInt(200) +) + +// Parameters store keys +var ( + MaxPostMessageLengthKey = []byte("MaxPostMessageLength") + MaxOptionalDataFieldsNumberKey = []byte("MaxOptionalDataFieldsNumber") + MaxOptionalDataFieldValueLengthKey = []byte("MaxOptionalDataFieldValueLength") +) + +// ParamKeyTable Key declaration for parameters +func ParamKeyTable() paramsModule.KeyTable { + return paramsModule.NewKeyTable().RegisterParamSet(&Params{}) +} + +type Params struct { + MaxPostMessageLength sdk.Int `json:"max_post_message_length" yaml:"max_post_message_length"` + MaxOptionalDataFieldsNumber sdk.Int `json:"max_optional_data_fields_number" yaml:"max_optional_data_fields_number"` + MaxOptionalDataFieldValueLength sdk.Int `json:"max_optional_data_field_value_length" yaml:"max_optional_data_field_value_length"` +} + +// NewParams creates a new Params obj +func NewParams(maxPostMLen, maxOpDataFieldNum, maxOpDataFieldValLen sdk.Int) Params { + return Params{ + MaxPostMessageLength: maxPostMLen, + MaxOptionalDataFieldsNumber: maxOpDataFieldNum, + MaxOptionalDataFieldValueLength: maxOpDataFieldValLen, + } +} + +// DefaultParams return default paramsModule +func DefaultParams() Params { + return Params{ + MaxPostMessageLength: DefaultMaxPostMessageLength, + MaxOptionalDataFieldsNumber: DefaultMaxOptionalDataFieldsNumber, + MaxOptionalDataFieldValueLength: DefaultMaxOptionalDataFieldValueLength, + } +} + +// String implements Stringer +func (params Params) String() string { + out := "Posts parameters:\n" + out += fmt.Sprintf("MaxPostMessageLength: %s\nMaxOptionalDataFieldsNumber: %s\nMaxOptionalDataFieldValueLength: %s\n", + params.MaxPostMessageLength, + params.MaxOptionalDataFieldsNumber, + params.MaxOptionalDataFieldValueLength, + ) + + return strings.TrimSpace(out) +} + +// ParamSetPairs implements the ParamSet interface and returns the key/value pairs +// of posts module's parameters. +func (params *Params) ParamSetPairs() paramsModule.ParamSetPairs { + return paramsModule.ParamSetPairs{ + paramsModule.NewParamSetPair(MaxPostMessageLengthKey, ¶ms.MaxPostMessageLength, ValidateMaxPostMessageLengthParam), + paramsModule.NewParamSetPair(MaxOptionalDataFieldsNumberKey, ¶ms.MaxOptionalDataFieldsNumber, ValidateMaxOptionalDataFieldNumberParam), + paramsModule.NewParamSetPair(MaxOptionalDataFieldValueLengthKey, ¶ms.MaxOptionalDataFieldValueLength, ValidateMaxOptionalDataFieldValueLengthParam), + } +} + +// Validate perform basic checks on all parameters to ensure they are correct +func (params Params) Validate() error { + if err := ValidateMaxPostMessageLengthParam(params.MaxPostMessageLength); err != nil { + return err + } + + if err := ValidateMaxOptionalDataFieldNumberParam(params.MaxOptionalDataFieldsNumber); err != nil { + return err + } + + if err := ValidateMaxOptionalDataFieldValueLengthParam(params.MaxOptionalDataFieldValueLength); err != nil { + return err + } + + return nil +} + +func ValidateMaxPostMessageLengthParam(i interface{}) error { + params, isCorrectParam := i.(sdk.Int) + + if !isCorrectParam { + return fmt.Errorf("invalid parameters type: %s", i) + } + + if params.IsNegative() || params.LT(DefaultMaxPostMessageLength) { + return fmt.Errorf("invalid max post message length param: %s", params) + } + + return nil +} + +func ValidateMaxOptionalDataFieldNumberParam(i interface{}) error { + params, isCorrectParam := i.(sdk.Int) + + if !isCorrectParam { + return fmt.Errorf("invalid parameters type: %s", i) + } + + if params.IsNegative() || params.LT(DefaultMaxOptionalDataFieldsNumber) { + return fmt.Errorf("invalid max optional data fields number param: %s", params) + } + + return nil +} + +func ValidateMaxOptionalDataFieldValueLengthParam(i interface{}) error { + params, isCorrectParam := i.(sdk.Int) + + if !isCorrectParam { + return fmt.Errorf("invalid parameters type: %s", i) + } + + if params.IsNegative() || params.LT(DefaultMaxOptionalDataFieldValueLength) { + return fmt.Errorf("invalid max optional data fields value length param: %s", params) + } + + return nil +} diff --git a/x/posts/internal/types/params_test.go b/x/posts/internal/types/params_test.go new file mode 100644 index 0000000000..ef423c4c97 --- /dev/null +++ b/x/posts/internal/types/params_test.go @@ -0,0 +1,153 @@ +package types_test + +import ( + "fmt" + "testing" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/desmos-labs/desmos/x/posts/internal/types" + "github.com/stretchr/testify/require" +) + +func TestDefaultParams(t *testing.T) { + params := types.NewParams(sdk.NewInt(500), sdk.NewInt(10), sdk.NewInt(200)) + require.Equal(t, params, types.DefaultParams()) +} + +func TestParams_String(t *testing.T) { + params := types.DefaultParams() + require.Equal(t, "Posts parameters:\nMaxPostMessageLength: 500\nMaxOptionalDataFieldsNumber: 10\nMaxOptionalDataFieldValueLength: 200", params.String()) +} + +func TestValidateParams(t *testing.T) { + + tests := []struct { + name string + params types.Params + expErr error + }{ + { + name: "invalid max post message length param returns error", + params: types.NewParams(sdk.NewInt(-1), sdk.NewInt(12), sdk.NewInt(200)), + expErr: fmt.Errorf("invalid max post message length param: -1"), + }, + { + name: "invalid max optional data number param returns error", + params: types.NewParams(sdk.NewInt(500), sdk.NewInt(8), sdk.NewInt(200)), + expErr: fmt.Errorf("invalid max optional data fields number param: 8"), + }, + { + name: "invalid max optional data field value length returns error", + params: types.NewParams(sdk.NewInt(500), sdk.NewInt(10), sdk.NewInt(10)), + expErr: fmt.Errorf("invalid max optional data fields value length param: %s", sdk.NewInt(10)), + }, + { + name: "valid params returns no error", + params: types.DefaultParams(), + expErr: nil, + }, + } + + for _, test := range tests { + test := test + t.Run(test.name, func(t *testing.T) { + require.Equal(t, test.expErr, test.params.Validate()) + }) + } +} + +func TestValidateMaxPostMessageLengthParam(t *testing.T) { + tests := []struct { + name string + maxPostMsgLength interface{} + expErr error + }{ + { + name: "invalid param type returns error", + maxPostMsgLength: "param", + expErr: fmt.Errorf("invalid parameters type: param"), + }, + { + name: "invalid param returns error", + maxPostMsgLength: sdk.NewInt(-1), + expErr: fmt.Errorf("invalid max post message length param: -1"), + }, + { + name: "valid param returns no errors", + maxPostMsgLength: sdk.NewInt(5000), + expErr: nil, + }, + } + + for _, test := range tests { + test := test + t.Run(test.name, func(t *testing.T) { + err := types.ValidateMaxPostMessageLengthParam(test.maxPostMsgLength) + require.Equal(t, test.expErr, err) + }) + } +} + +func TestValidateMaxOptionalDataFieldNumberParam(t *testing.T) { + tests := []struct { + name string + maxOpDataNumber interface{} + expErr error + }{ + { + name: "invalid param type returns error", + maxOpDataNumber: "param", + expErr: fmt.Errorf("invalid parameters type: param"), + }, + { + name: "invalid param returns error", + maxOpDataNumber: sdk.NewInt(-1), + expErr: fmt.Errorf("invalid max optional data fields number param: -1"), + }, + { + name: "valid param returns no errors", + maxOpDataNumber: sdk.NewInt(50), + expErr: nil, + }, + } + + for _, test := range tests { + test := test + t.Run(test.name, func(t *testing.T) { + err := types.ValidateMaxOptionalDataFieldNumberParam(test.maxOpDataNumber) + require.Equal(t, test.expErr, err) + }) + } +} + +func TestValidateMaxOptionalDataFieldValueLengthParam(t *testing.T) { + tests := []struct { + name string + maxOpDataFieldLen interface{} + expErr error + }{ + { + name: "invalid param type returns error", + maxOpDataFieldLen: "param", + expErr: fmt.Errorf("invalid parameters type: param"), + }, + { + name: "invalid param returns error", + maxOpDataFieldLen: sdk.NewInt(-1), + expErr: fmt.Errorf("invalid max optional data fields value length param: -1"), + }, + { + name: "valid param returns no errors", + maxOpDataFieldLen: sdk.NewInt(500), + expErr: nil, + }, + } + + for _, test := range tests { + test := test + t.Run(test.name, func(t *testing.T) { + err := types.ValidateMaxOptionalDataFieldValueLengthParam(test.maxOpDataFieldLen) + require.Equal(t, test.expErr, err) + }) + } +} diff --git a/x/posts/internal/types/post.go b/x/posts/internal/types/post.go index 777b9fe1eb..fde270b3b2 100644 --- a/x/posts/internal/types/post.go +++ b/x/posts/internal/types/post.go @@ -168,10 +168,6 @@ func (p Post) Validate() error { return fmt.Errorf("post message or medias required, they cannot be both empty") } - if len(p.Message) > MaxPostMessageLength { - return fmt.Errorf("post message cannot be longer than %d characters", MaxPostMessageLength) - } - if !Sha256RegEx.MatchString(p.Subspace) { return fmt.Errorf("post subspace must be a valid sha-256 hash") } @@ -192,19 +188,6 @@ func (p Post) Validate() error { return fmt.Errorf("post last edit date cannot be in the future") } - if len(p.OptionalData) > MaxOptionalDataFieldsNumber { - return fmt.Errorf("post optional data cannot contain more than %d key-value pairs", MaxOptionalDataFieldsNumber) - } - - for key, value := range p.OptionalData { - if len(value) > MaxOptionalDataFieldValueLength { - return fmt.Errorf( - "post optional data values cannot exceed %d characters. %s of post with id %s is longer than this", - MaxOptionalDataFieldValueLength, key, p.PostID, - ) - } - } - if err := p.Medias.Validate(); err != nil { return err } diff --git a/x/posts/internal/types/post_response_test.go b/x/posts/internal/types/post_response_test.go index 695a170ed6..6709b9a325 100644 --- a/x/posts/internal/types/post_response_test.go +++ b/x/posts/internal/types/post_response_test.go @@ -2,12 +2,12 @@ package types_test import ( "encoding/json" - "github.com/desmos-labs/desmos/x/posts/internal/types" "strings" "testing" "time" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/desmos-labs/desmos/x/posts/internal/types" "github.com/stretchr/testify/require" ) diff --git a/x/posts/internal/types/post_test.go b/x/posts/internal/types/post_test.go index 3d63cc47c8..45c7224de3 100644 --- a/x/posts/internal/types/post_test.go +++ b/x/posts/internal/types/post_test.go @@ -1,11 +1,11 @@ package types_test import ( - "github.com/desmos-labs/desmos/x/posts/internal/types" "testing" "time" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/desmos-labs/desmos/x/posts/internal/types" "github.com/desmos-labs/desmos/x/posts/internal/types/common" "github.com/desmos-labs/desmos/x/posts/internal/types/polls" @@ -284,70 +284,6 @@ func TestPost_Validate(t *testing.T) { }, expError: "post last edit date cannot be in the future", }, - { - name: "Post message cannot be longer than 500 characters", - post: types.NewPost( - id, - id2, - ` - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque massa felis, aliquam sed ipsum at, - mollis pharetra quam. Vestibulum nec nulla ante. Praesent sed dignissim turpis. Curabitur aliquam nunc - eu nisi porta, eu gravida purus faucibus. Duis commodo sagittis lacus, vitae luctus enim vulputate a. - Nulla tempor eget nunc vitae vulputate. Nulla facilities. Donec sollicitudin odio in arcu efficitur, - sit amet vestibulum diam ullamcorper. Ut ac dolor in velit gravida efficitur et et erat volutpat. - `, - true, - "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", - map[string]string{}, - date, - owner, - ).WithMedias(medias).WithPollData(pollData), - expError: "post message cannot be longer than 500 characters", - }, - { - name: "post optional data cannot contain more than 10 key-value", - post: types.NewPost( - id, - id2, - "Message", - true, - "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", - map[string]string{ - "key1": "value", - "key2": "value", - "key3": "value", - "key4": "value", - "key5": "value", - "key6": "value", - "key7": "value", - "key8": "value", - "key9": "value", - "key10": "value", - "key11": "value", - }, - date, - owner, - ).WithMedias(medias).WithPollData(pollData), - expError: "post optional data cannot contain more than 10 key-value pairs", - }, - { - name: "post optional data values cannot exceed 200 characters", - post: types.NewPost( - id, - id2, - "Message", - true, - "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", - map[string]string{ - "key1": `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque euismod, mi at commodo - efficitur, quam sapien congue enim, ut porttitor lacus tellus vitae turpis. Vivamus aliquam - sem eget neque metus.`, - }, - date, - owner, - ).WithMedias(medias).WithPollData(pollData), - expError: "post optional data values cannot exceed 200 characters. key1 of post with id dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1 is longer than this", - }, { name: "Valid post without poll data", post: types.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithMedias(medias), diff --git a/x/posts/module.go b/x/posts/module.go index 47a8cf8dad..63bdf8eded 100644 --- a/x/posts/module.go +++ b/x/posts/module.go @@ -163,7 +163,7 @@ func (AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedPropos // RandomizedParams creates randomized posts param changes for the simulator. func (AppModule) RandomizedParams(r *rand.Rand) []sim.ParamChange { - return nil + return ParamChanges(r) } // RegisterStoreDecoder performs a no-op. diff --git a/x/profiles/alias.go b/x/profiles/alias.go index 32e9dbe0d5..01842236b4 100644 --- a/x/profiles/alias.go +++ b/x/profiles/alias.go @@ -15,10 +15,6 @@ const ( OpWeightMsgDeleteProfile = simulation.OpWeightMsgDeleteProfile DefaultGasValue = simulation.DefaultGasValue ParamsKey = simulation.ParamsKey - EventTypeProfileSaved = types.EventTypeProfileSaved - EventTypeProfileDeleted = types.EventTypeProfileDeleted - AttributeProfileDtag = types.AttributeProfileDtag - AttributeProfileCreator = types.AttributeProfileCreator DefaultParamspace = types.DefaultParamspace ModuleName = types.ModuleName RouterKey = types.RouterKey @@ -29,17 +25,21 @@ const ( QueryProfile = types.QueryProfile QueryProfiles = types.QueryProfiles QueryParams = types.QueryParams + EventTypeProfileSaved = types.EventTypeProfileSaved + EventTypeProfileDeleted = types.EventTypeProfileDeleted + AttributeProfileDtag = types.AttributeProfileDtag + AttributeProfileCreator = types.AttributeProfileCreator ) var ( // functions aliases + NewHandler = keeper.NewHandler + ValidateProfile = keeper.ValidateProfile + NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier RegisterInvariants = keeper.RegisterInvariants AllInvariants = keeper.AllInvariants ValidProfileInvariant = keeper.ValidProfileInvariant - NewHandler = keeper.NewHandler - ValidateProfile = keeper.ValidateProfile - NewKeeper = keeper.NewKeeper ParamChanges = simulation.ParamChanges DecodeStore = simulation.DecodeStore SimulateMsgSaveProfile = simulation.SimulateMsgSaveProfile @@ -57,9 +57,6 @@ var ( RandomBioParams = simulation.RandomBioParams WeightedOperations = simulation.WeightedOperations RandomizedGenState = simulation.RandomizedGenState - NewProfile = types.NewProfile - NewProfiles = types.NewProfiles - NewPictures = types.NewPictures NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis @@ -78,6 +75,9 @@ var ( NewMsgDeleteProfile = types.NewMsgDeleteProfile ProfileStoreKey = types.ProfileStoreKey DtagStoreKey = types.DtagStoreKey + NewProfile = types.NewProfile + NewProfiles = types.NewProfiles + NewPictures = types.NewPictures // variable aliases ModuleCdc = types.ModuleCdc @@ -97,13 +97,13 @@ var ( type ( Keeper = keeper.Keeper - Profile = types.Profile - Profiles = types.Profiles - Pictures = types.Pictures GenesisState = types.GenesisState Params = types.Params MonikerParams = types.MonikerParams DtagParams = types.DtagParams MsgSaveProfile = types.MsgSaveProfile MsgDeleteProfile = types.MsgDeleteProfile + Profile = types.Profile + Profiles = types.Profiles + Pictures = types.Pictures ) diff --git a/x/reports/alias.go b/x/reports/alias.go index f3b02d30f7..7f429d4003 100755 --- a/x/reports/alias.go +++ b/x/reports/alias.go @@ -31,51 +31,51 @@ const ( var ( // functions aliases - DecodeStore = simulation.DecodeStore - SimulateMsgReportPost = simulation.SimulateMsgReportPost - RandomReportsData = simulation.RandomReportsData - RandomPostID = simulation.RandomPostID - RandomReportMessage = simulation.RandomReportMessage - RandomReportTypes = simulation.RandomReportTypes - WeightedOperations = simulation.WeightedOperations - RandomizedGenState = simulation.RandomizedGenState NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis RegisterCodec = types.RegisterCodec - NewReport = models.NewReport - RegisterModelsCodec = models.RegisterModelsCodec ReportStoreKey = models.ReportStoreKey NewReportResponse = models.NewReportResponse - NewMsgReportPost = msgs.NewMsgReportPost + NewReport = models.NewReport + RegisterModelsCodec = models.RegisterModelsCodec RegisterMessagesCodec = msgs.RegisterMessagesCodec + NewMsgReportPost = msgs.NewMsgReportPost GetQueryCmd = cli.GetQueryCmd GetCmdQueryPostReports = cli.GetCmdQueryPostReports GetTxCmd = cli.GetTxCmd GetCmdReportPost = cli.GetCmdReportPost RegisterRoutes = rest.RegisterRoutes - RegisterInvariants = keeper.RegisterInvariants - AllInvariants = keeper.AllInvariants - ValidReportsIDs = keeper.ValidReportsIDs NewHandler = keeper.NewHandler NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier + RegisterInvariants = keeper.RegisterInvariants + AllInvariants = keeper.AllInvariants + ValidReportsIDs = keeper.ValidReportsIDs + WeightedOperations = simulation.WeightedOperations + RandomizedGenState = simulation.RandomizedGenState + DecodeStore = simulation.DecodeStore + SimulateMsgReportPost = simulation.SimulateMsgReportPost + RandomReportsData = simulation.RandomReportsData + RandomPostID = simulation.RandomPostID + RandomReportMessage = simulation.RandomReportMessage + RandomReportTypes = simulation.RandomReportTypes // variable aliases - MsgsCodec = msgs.MsgsCodec - ModuleCdc = types.ModuleCdc ModelsCdc = models.ModelsCdc ReportsStorePrefix = common.ReportsStorePrefix ReportsTypeStorePrefix = common.ReportsTypeStorePrefix + MsgsCodec = msgs.MsgsCodec + ModuleCdc = types.ModuleCdc ) type ( - Keeper = keeper.Keeper - ReportsData = simulation.ReportsData GenesisState = types.GenesisState + ReportsQueryResponse = models.ReportsQueryResponse Report = models.Report Reports = models.Reports - ReportsQueryResponse = models.ReportsQueryResponse MsgReportPost = msgs.MsgReportPost ReportPostReq = rest.ReportPostReq + Keeper = keeper.Keeper + ReportsData = simulation.ReportsData ) diff --git a/x/reports/internal/keeper/common_test.go b/x/reports/internal/keeper/common_test.go index fbee1cdad5..8a7b1fc237 100644 --- a/x/reports/internal/keeper/common_test.go +++ b/x/reports/internal/keeper/common_test.go @@ -6,6 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/store" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/x/params" "github.com/desmos-labs/desmos/x/posts" "github.com/desmos-labs/desmos/x/reports/internal/keeper" "github.com/desmos-labs/desmos/x/reports/internal/types" @@ -18,24 +19,32 @@ import ( func SetupTestInput() (sdk.Context, keeper.Keeper, posts.Keeper) { + cdc := testCodec() + // define store keys postsKey := sdk.NewKVStoreKey(posts.StoreKey) reportsKey := sdk.NewKVStoreKey(common.StoreKey) + paramsKey := sdk.NewKVStoreKey("params") + paramsTKey := sdk.NewTransientStoreKey("transient_params") + + // define keepers + paramsKeeper := params.NewKeeper(cdc, paramsKey, paramsTKey) + subspace := paramsKeeper.Subspace(posts.DefaultParamspace) //post keeper - postsK := posts.NewKeeper(testCodec(), postsKey) + postsK := posts.NewKeeper(cdc, postsKey, subspace) // create an in-memory db for reports memDB := db.NewMemDB() ms := store.NewCommitMultiStore(memDB) ms.MountStoreWithDB(postsKey, sdk.StoreTypeIAVL, memDB) ms.MountStoreWithDB(reportsKey, sdk.StoreTypeIAVL, memDB) + ms.MountStoreWithDB(paramsKey, sdk.StoreTypeIAVL, memDB) + ms.MountStoreWithDB(paramsTKey, sdk.StoreTypeTransient, memDB) if err := ms.LoadLatestVersion(); err != nil { panic(err) } - // create a cdc and a context - cdc := testCodec() ctx := sdk.NewContext(ms, abci.Header{ChainID: "test-chain-id"}, false, log.NewNopLogger()) return ctx, keeper.NewKeeper(postsK, cdc, reportsKey), postsK diff --git a/x/reports/internal/types/alias.go b/x/reports/internal/types/alias.go index b61ff356a5..a469203fe9 100644 --- a/x/reports/internal/types/alias.go +++ b/x/reports/internal/types/alias.go @@ -21,12 +21,12 @@ const ( var ( // functions aliases + NewMsgReportPost = msgs.NewMsgReportPost + RegisterMessagesCodec = msgs.RegisterMessagesCodec ReportStoreKey = models.ReportStoreKey NewReportResponse = models.NewReportResponse NewReport = models.NewReport RegisterModelsCodec = models.RegisterModelsCodec - NewMsgReportPost = msgs.NewMsgReportPost - RegisterMessagesCodec = msgs.RegisterMessagesCodec // variable aliases ModelsCdc = models.ModelsCdc From b667c5294f53a816cce0c3ddb3b503b95b23c21a Mon Sep 17 00:00:00 2001 From: bragaz Date: Tue, 30 Jun 2020 10:05:15 +0200 Subject: [PATCH 03/11] fixed tests and bug in genesis.go --- x/posts/genesis.go | 3 +++ x/posts/internal/simulation/utils.go | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/x/posts/genesis.go b/x/posts/genesis.go index de5921cb1b..62d509cb75 100644 --- a/x/posts/genesis.go +++ b/x/posts/genesis.go @@ -17,12 +17,15 @@ func ExportGenesis(ctx sdk.Context, k Keeper) GenesisState { UsersPollAnswers: k.GetPollAnswersMap(ctx), PostReactions: k.GetReactions(ctx), RegisteredReactions: k.GetRegisteredReactions(ctx), + Params: k.GetParams(ctx), } } // InitGenesis initializes the chain state based on the given GenesisState func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.ValidatorUpdate { + keeper.SetParams(ctx, data.Params) + // Sort the posts so that they are inserted based on their IDs sort.Sort(data.Posts) for _, post := range data.Posts { diff --git a/x/posts/internal/simulation/utils.go b/x/posts/internal/simulation/utils.go index 0ed50d0d41..2b542638fb 100644 --- a/x/posts/internal/simulation/utils.go +++ b/x/posts/internal/simulation/utils.go @@ -249,8 +249,8 @@ func RandomEmojiPostReaction(r *rand.Rand) types.PostReaction { func RandomParams(r *rand.Rand) types.Params { return types.Params{ - MaxPostMessageLength: sdk.NewInt(int64(r.Intn(1000))), - MaxOptionalDataFieldsNumber: sdk.NewInt(int64(r.Intn(50))), - MaxOptionalDataFieldValueLength: sdk.NewInt(int64(r.Intn(200))), + MaxPostMessageLength: sdk.NewInt(int64(sim.RandIntBetween(r, 500, 1000))), + MaxOptionalDataFieldsNumber: sdk.NewInt(int64(sim.RandIntBetween(r, 10, 20))), + MaxOptionalDataFieldValueLength: sdk.NewInt(int64(sim.RandIntBetween(r, 200, 500))), } } From 4e0c74ea73b14a9e4fedb7bbc9fcfa33831a55f4 Mon Sep 17 00:00:00 2001 From: bragaz Date: Tue, 30 Jun 2020 11:57:27 +0200 Subject: [PATCH 04/11] fixed a bug that made a `reports` sim test failed occasionally updated docs and CHANGELOG.md --- CHANGELOG.md | 3 ++- docs/developers/msgs/edit_param_proposal.md | 2 +- x/reports/internal/simulation/genesis.go | 4 +--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 843a2df403..d060834567 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,8 @@ - Changed the data stored inside the profile objects (#193) - Renamed the `profile_cov` field of `MsgSaveProfile` to `cover_picture` - Rename the `profile_pic` field of `MsgSaveProfile` to `profile_picture` -- Moved profile module constants to chain parameters (#171) +- Moved `profiles` module constants to chain parameters (#171) +- Moved `posts` module constants to chain parameters (#172) ## Bug fixes - Fixed a bug inside the `Equals` method of the `Pictures` object diff --git a/docs/developers/msgs/edit_param_proposal.md b/docs/developers/msgs/edit_param_proposal.md index 0309a7ccb5..09e0b5e8db 100644 --- a/docs/developers/msgs/edit_param_proposal.md +++ b/docs/developers/msgs/edit_param_proposal.md @@ -1,5 +1,5 @@ # `EditParamsProposal` -Inside Desmos there are some parameters set for the `profiles` module which can be changed by submitting a proposal through +Inside Desmos there are some parameters set for the `profiles` and `posts` modules which can be changed by submitting a proposal through the `gov` module of the `cosmosSDK`. ## Structure diff --git a/x/reports/internal/simulation/genesis.go b/x/reports/internal/simulation/genesis.go index 3b8061904a..aaaa104bdf 100644 --- a/x/reports/internal/simulation/genesis.go +++ b/x/reports/internal/simulation/genesis.go @@ -1,8 +1,6 @@ package simulation import ( - "math/rand" - sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" "github.com/desmos-labs/desmos/x/reports/internal/types" @@ -16,7 +14,7 @@ func RandomizedGenState(simState *module.SimulationState) { } func randomReports(simState *module.SimulationState) (reportsMap map[string]types.Reports) { - reportsMapLen := simState.Rand.Intn(rand.Intn(50)) + reportsMapLen := simState.Rand.Intn(simState.Rand.Intn(50)) reportsMap = make(map[string]types.Reports, reportsMapLen) for i := 0; i < reportsMapLen; i++ { From 953a3db55e7ba1430216036d9333f54f513870e2 Mon Sep 17 00:00:00 2001 From: bragaz Date: Tue, 30 Jun 2020 11:59:07 +0200 Subject: [PATCH 05/11] added profiles renamed to the CHANGELOG.md --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d060834567..c599e87a74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ ## Changes - Changed the data stored inside the profile objects (#193) - Renamed the `profile_cov` field of `MsgSaveProfile` to `cover_picture` -- Rename the `profile_pic` field of `MsgSaveProfile` to `profile_picture` +- Renamed the `profile_pic` field of `MsgSaveProfile` to `profile_picture` +- Renamed the `profile` module to `profiles` (#200) - Moved `profiles` module constants to chain parameters (#171) - Moved `posts` module constants to chain parameters (#172) From b7818cb608902231bfd3508a46129ef1fd837db6 Mon Sep 17 00:00:00 2001 From: bragaz Date: Tue, 30 Jun 2020 12:11:01 +0200 Subject: [PATCH 06/11] fixed error in params rest query --- x/posts/client/rest/query.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/posts/client/rest/query.go b/x/posts/client/rest/query.go index d1298a61e6..93d2646f0a 100644 --- a/x/posts/client/rest/query.go +++ b/x/posts/client/rest/query.go @@ -28,11 +28,11 @@ const ( ) func registerQueryRoutes(cliCtx context.CLIContext, r *mux.Router) { + r.HandleFunc("/posts/params", queryPostsParamsHandlerFn(cliCtx)).Methods("GET") r.HandleFunc("/posts/{postID}", queryPostHandlerFn(cliCtx)).Methods("GET") r.HandleFunc("/posts", queryPostsWithParameterHandlerFn(cliCtx)).Methods("GET") r.HandleFunc("/posts/{postID}/poll-answers", queryPostPollAnswersHandlerFn(cliCtx)).Methods("GET") r.HandleFunc("/registeredReactions", queryRegisteredReactions(cliCtx)).Methods("GET") - r.HandleFunc("/posts/params", queryPostsParamsHandlerFn(cliCtx)).Methods("GET") } // HTTP request handler to query a single post based on its ID From eb42a91b202b16f52f45007191239f2eaf1be039 Mon Sep 17 00:00:00 2001 From: bragaz Date: Tue, 30 Jun 2020 12:17:48 +0200 Subject: [PATCH 07/11] updated docs, separated params query --- docs/developers/queries/params.md | 36 ++++++++++++++++++++++++++++ docs/developers/queries/profile.md | 4 ++-- docs/developers/queries/profiles.md | 24 +++---------------- docs/developers/queries/reactions.md | 2 +- docs/developers/queries/reports.md | 2 +- docs/developers/query-data.md | 5 +++- 6 files changed, 47 insertions(+), 26 deletions(-) create mode 100644 docs/developers/queries/params.md diff --git a/docs/developers/queries/params.md b/docs/developers/queries/params.md new file mode 100644 index 0000000000..c5690a57c3 --- /dev/null +++ b/docs/developers/queries/params.md @@ -0,0 +1,36 @@ +# Query posts module parameters +This query endpoint returns all the parameters of the `posts` module. + +**CLI** + ```bash +desmoscli query posts params + +# Example +# desmoscli query posts params +``` +**REST** +``` +/posts/params + +# Example +# curl http://lcd.morpheus.desmos.network:1317/posts/params +``` + +# Query profiles module parameters +This query endpoint returns all the parameters of the `profiles` module. + +**CLI** + ```bash +desmoscli query profiles params + +# Example +# desmoscli query profiles params +``` +**REST** +``` +/profiles/params + +# Example +# curl http://lcd.morpheus.desmos.network:1317/profiles/params +``` + diff --git a/docs/developers/queries/profile.md b/docs/developers/queries/profile.md index be19b07994..18db4ce3e0 100644 --- a/docs/developers/queries/profile.md +++ b/docs/developers/queries/profile.md @@ -15,6 +15,6 @@ desmoscli query profiles profile [address_or_moniker] /profiles/{address_or_moniker} # Example -# curl https://morpheus4000.desmos.network/profiles/desmos12a2y7fflz6g4e5gn0mh0n9dkrzllj0q5vx7c6t -# curl https://morpheus4000.desmos.network/profiles/leonardo +# curl http://lcd.morpheus.desmos.network:1317/profiles/desmos12a2y7fflz6g4e5gn0mh0n9dkrzllj0q5vx7c6t +# curl http://lcd.morpheus.desmos.network:1317/profiles/leonardo ``` \ No newline at end of file diff --git a/docs/developers/queries/profiles.md b/docs/developers/queries/profiles.md index 21d921fbe0..426b116036 100644 --- a/docs/developers/queries/profiles.md +++ b/docs/developers/queries/profiles.md @@ -14,7 +14,7 @@ desmoscli query profiles all /profiles # Example -# curl https://morpheus7000.desmos.network/profiles +# curl http://lcd.morpheus.desmos.network:1317/profiles ``` # Query a profile with the given moniker @@ -32,23 +32,5 @@ desmoscli query profiles profile bob /profiles/{address_or_moniker} # Example -# curl https://morpheus7000.desmos.network/profiles/bob -``` - -# Query profiles module parameters -This query endpoint returns all the parameters of the profiles module. - -**CLI** - ```bash -desmoscli query profiles params - -# Example -# desmoscli query profiles params -``` -**REST** -``` -/profiles/params - -# Example -# curl https://morpheus7000.desmos.network/profiles/params -``` +# curl http://lcd.morpheus.desmos.network:1317/profiles/bob +``` \ No newline at end of file diff --git a/docs/developers/queries/reactions.md b/docs/developers/queries/reactions.md index af9ef32592..0fe14f3ae7 100644 --- a/docs/developers/queries/reactions.md +++ b/docs/developers/queries/reactions.md @@ -14,5 +14,5 @@ desmoscli query posts registered-reactions /reactions # Example -# curl https://morpheus4000.desmos.network/reactions +# curl http://lcd.morpheus.desmos.network:1317/reactions ``` diff --git a/docs/developers/queries/reports.md b/docs/developers/queries/reports.md index 6f156b394c..3444401a9e 100644 --- a/docs/developers/queries/reports.md +++ b/docs/developers/queries/reports.md @@ -15,5 +15,5 @@ desmoscli query reports post [id] /reports/{postID} # Example -# curl https://morpheus7000.desmos.network/reports/301921ac3c8e623d8f35aef1886fea20849e49f08ec8ddfdd9b96feaf0c4fd15 +# curl http://lcd.morpheus.desmos.network:1317/reports/301921ac3c8e623d8f35aef1886fea20849e49f08ec8ddfdd9b96feaf0c4fd15 ``` \ No newline at end of file diff --git a/docs/developers/query-data.md b/docs/developers/query-data.md index fd24c835c3..1e416b6fb1 100644 --- a/docs/developers/query-data.md +++ b/docs/developers/query-data.md @@ -16,4 +16,7 @@ Aside from [performing transactions](perform-transactions.md) you can also query - [Query the stored profiles](queries/profiles.md) ## Reports -- [Query the post's related reports](queries/reports.md) \ No newline at end of file +- [Query the post's related reports](queries/reports.md) + +## Modules Parameters +- [Query parameters](queries/params.md) \ No newline at end of file From 3d1ba31e4288b9c7897d8ce35a72f2fc01933f77 Mon Sep 17 00:00:00 2001 From: bragaz Date: Tue, 30 Jun 2020 12:32:59 +0200 Subject: [PATCH 08/11] fixed errors found during re-reviewing --- x/posts/genesis.go | 1 - x/posts/internal/keeper/handler_test.go | 2 +- x/posts/internal/keeper/invariants_test.go | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/x/posts/genesis.go b/x/posts/genesis.go index 62d509cb75..4783d1ca0f 100644 --- a/x/posts/genesis.go +++ b/x/posts/genesis.go @@ -23,7 +23,6 @@ func ExportGenesis(ctx sdk.Context, k Keeper) GenesisState { // InitGenesis initializes the chain state based on the given GenesisState func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.ValidatorUpdate { - keeper.SetParams(ctx, data.Params) // Sort the posts so that they are inserted based on their IDs diff --git a/x/posts/internal/keeper/handler_test.go b/x/posts/internal/keeper/handler_test.go index 1058d0046b..c65eb1a5ac 100644 --- a/x/posts/internal/keeper/handler_test.go +++ b/x/posts/internal/keeper/handler_test.go @@ -91,7 +91,7 @@ func TestValidatePost(t *testing.T) { "post optional data values cannot exceed 200 characters. key1 of post with id dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1 is longer than this"), }, { - name: "Valid post without poll data", + name: "Valid post", post: types.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner), expError: nil, }, diff --git a/x/posts/internal/keeper/invariants_test.go b/x/posts/internal/keeper/invariants_test.go index 7b6f5ac180..5ec50646da 100644 --- a/x/posts/internal/keeper/invariants_test.go +++ b/x/posts/internal/keeper/invariants_test.go @@ -64,7 +64,7 @@ func TestInvariants(t *testing.T) { expBool: true, }, { - name: "Posts Invariants violated", + name: "ValidPosts Invariants violated", posts: types.Posts{types.NewPost( "1234", "", From c629f6a60f8c784e71b13cc712293bca73a0e3c8 Mon Sep 17 00:00:00 2001 From: bragaz Date: Tue, 30 Jun 2020 16:02:53 +0200 Subject: [PATCH 09/11] revert `posts` file organization added migrate `v0.8.0` --- x/genutil/legacy/v0.8.0/migrate.go | 12 + x/magpie/alias.go | 8 +- x/posts/abci.go | 11 +- x/posts/alias.go | 140 +- x/posts/genesis.go | 8 +- x/posts/internal/keeper/common_test.go | 2 +- x/posts/internal/types/alias.go | 75 +- x/posts/internal/types/codec.go | 8 +- x/posts/internal/types/models/alias.go | 82 + x/posts/internal/types/models/codec.go | 17 + .../types/{ => models}/common/keys.go | 0 .../types/{ => models}/common/post_media.go | 0 .../{ => models}/common/post_media_test.go | 2 +- .../{ => models}/common/post_optional_data.go | 0 .../types/{ => models}/common/reactions.go | 0 x/posts/internal/types/{ => models}/keys.go | 2 +- .../{ => models}/poll_answers_response.go | 2 +- .../poll_answers_response_test.go | 8 +- .../types/{ => models}/polls/poll_answer.go | 0 .../{ => models}/polls/poll_answer_test.go | 2 +- .../types/{ => models}/polls/poll_data.go | 0 .../{ => models}/polls/poll_data_test.go | 2 +- x/posts/internal/types/{ => models}/post.go | 2 +- .../types/{ => models}/post_response.go | 2 +- .../types/{ => models}/post_response_test.go | 70 +- .../internal/types/{ => models}/post_test.go | 176 +- .../{ => models}/reactions/post_reaction.go | 2 +- .../reactions/post_reaction_test.go | 2 +- .../types/{ => models}/reactions/reaction.go | 2 +- .../{ => models}/reactions/reaction_test.go | 2 +- x/posts/internal/types/msgs/codec.go | 22 + .../types/{ => msgs}/msg_reactions.go | 15 +- .../types/{ => msgs}/msg_reactions_test.go | 24 +- x/posts/internal/types/{ => msgs}/msgs.go | 31 +- .../internal/types/{ => msgs}/msgs_polls.go | 17 +- .../types/{ => msgs}/msgs_polls_test.go | 17 +- .../types/{ => msgs}/msgs_post_reactions.go | 27 +- .../{ => msgs}/msgs_post_reactions_test.go | 35 +- .../internal/types/{ => msgs}/msgs_test.go | 117 +- x/posts/legacy/v0.6.0/types.go | 4 + x/posts/legacy/v0.8.0/migrate.go | 23 + x/posts/legacy/v0.8.0/migrate_test.go | 206 + x/posts/legacy/v0.8.0/types.go | 22 + x/posts/legacy/v0.8.0/v060state.json | 79424 ++++++++++++++++ x/profiles/alias.go | 34 +- x/reports/alias.go | 52 +- x/reports/internal/simulation/genesis.go | 2 +- x/reports/internal/types/alias.go | 4 +- 48 files changed, 80283 insertions(+), 432 deletions(-) mode change 100644 => 100755 x/posts/internal/types/alias.go create mode 100755 x/posts/internal/types/models/alias.go create mode 100644 x/posts/internal/types/models/codec.go rename x/posts/internal/types/{ => models}/common/keys.go (100%) rename x/posts/internal/types/{ => models}/common/post_media.go (100%) rename x/posts/internal/types/{ => models}/common/post_media_test.go (99%) rename x/posts/internal/types/{ => models}/common/post_optional_data.go (100%) rename x/posts/internal/types/{ => models}/common/reactions.go (100%) rename x/posts/internal/types/{ => models}/keys.go (98%) rename x/posts/internal/types/{ => models}/poll_answers_response.go (97%) rename x/posts/internal/types/{ => models}/poll_answers_response_test.go (77%) rename x/posts/internal/types/{ => models}/polls/poll_answer.go (100%) rename x/posts/internal/types/{ => models}/polls/poll_answer_test.go (98%) rename x/posts/internal/types/{ => models}/polls/poll_data.go (100%) rename x/posts/internal/types/{ => models}/polls/poll_data_test.go (99%) rename x/posts/internal/types/{ => models}/post.go (99%) rename x/posts/internal/types/{ => models}/post_response.go (99%) rename x/posts/internal/types/{ => models}/post_response_test.go (82%) rename x/posts/internal/types/{ => models}/post_test.go (81%) rename x/posts/internal/types/{ => models}/reactions/post_reaction.go (98%) rename x/posts/internal/types/{ => models}/reactions/post_reaction_test.go (99%) rename x/posts/internal/types/{ => models}/reactions/reaction.go (97%) rename x/posts/internal/types/{ => models}/reactions/reaction_test.go (98%) create mode 100644 x/posts/internal/types/msgs/codec.go rename x/posts/internal/types/{ => msgs}/msg_reactions.go (80%) rename x/posts/internal/types/{ => msgs}/msg_reactions_test.go (80%) rename x/posts/internal/types/{ => msgs}/msgs.go (81%) rename x/posts/internal/types/{ => msgs}/msgs_polls.go (69%) rename x/posts/internal/types/{ => msgs}/msgs_polls_test.go (80%) rename x/posts/internal/types/{ => msgs}/msgs_post_reactions.go (77%) rename x/posts/internal/types/{ => msgs}/msgs_post_reactions_test.go (80%) rename x/posts/internal/types/{ => msgs}/msgs_test.go (86%) create mode 100644 x/posts/legacy/v0.8.0/migrate.go create mode 100644 x/posts/legacy/v0.8.0/migrate_test.go create mode 100644 x/posts/legacy/v0.8.0/types.go create mode 100644 x/posts/legacy/v0.8.0/v060state.json diff --git a/x/genutil/legacy/v0.8.0/migrate.go b/x/genutil/legacy/v0.8.0/migrate.go index d37acc3e70..d8c26d545e 100644 --- a/x/genutil/legacy/v0.8.0/migrate.go +++ b/x/genutil/legacy/v0.8.0/migrate.go @@ -5,6 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/x/genutil" + v060posts "github.com/desmos-labs/desmos/x/posts/legacy/v0.6.0" + v080posts "github.com/desmos-labs/desmos/x/posts/legacy/v0.8.0" v060profile "github.com/desmos-labs/desmos/x/profiles/legacy/v0.6.0" v080profile "github.com/desmos-labs/desmos/x/profiles/legacy/v0.8.0" ) @@ -23,6 +25,16 @@ func Migrate(appState genutil.AppMap, values ...interface{}) genutil.AppMap { } // Migrate posts state + if appState[v060posts.ModuleName] != nil { + var genDocs v060posts.GenesisState + v080Codec.MustUnmarshalJSON(appState[v060posts.ModuleName], &genDocs) + + appState[v060posts.ModuleName] = v080Codec.MustMarshalJSON( + v080posts.Migrate(genDocs), + ) + } + + // Migrate profile state if appState[v060profile.ModuleName] != nil { var genDocs v060profile.GenesisState v060Codec.MustUnmarshalJSON(appState[v060profile.ModuleName], &genDocs) diff --git a/x/magpie/alias.go b/x/magpie/alias.go index 8553637574..e01a648a02 100644 --- a/x/magpie/alias.go +++ b/x/magpie/alias.go @@ -30,11 +30,12 @@ var ( NewHandler = keeper.NewHandler NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier - RandomizedGenState = simulation.RandomizedGenState - DecodeStore = simulation.DecodeStore RandomSessionData = simulation.RandomSessionData WeightedOperations = simulation.WeightedOperations SimulateMsgCreateSession = simulation.SimulateMsgCreateSession + RandomizedGenState = simulation.RandomizedGenState + DecodeStore = simulation.DecodeStore + RegisterCodec = types.RegisterCodec NewMsgCreateSession = types.NewMsgCreateSession SessionStoreKey = types.SessionStoreKey ParseSessionID = types.ParseSessionID @@ -42,14 +43,13 @@ var ( NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis - RegisterCodec = types.RegisterCodec // variable aliases RandomNamespaces = simulation.RandomNamespaces + ModuleCdc = types.ModuleCdc SessionLengthKey = types.SessionLengthKey LastSessionIDStoreKey = types.LastSessionIDStoreKey SessionStorePrefix = types.SessionStorePrefix - ModuleCdc = types.ModuleCdc ) type ( diff --git a/x/posts/abci.go b/x/posts/abci.go index ca718122aa..75a6ff1b50 100644 --- a/x/posts/abci.go +++ b/x/posts/abci.go @@ -2,7 +2,6 @@ package posts import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types" ) // EndBlocker called upon each block end to close expired polls @@ -10,11 +9,11 @@ import ( func EndBlocker(ctx sdk.Context, keeper Keeper) { store := ctx.KVStore(keeper.StoreKey) - iterator := sdk.KVStorePrefixIterator(store, types.PostStorePrefix) + iterator := sdk.KVStorePrefixIterator(store, PostStorePrefix) defer iterator.Close() for ; iterator.Valid(); iterator.Next() { - var post types.Post + var post Post keeper.Cdc.MustUnmarshalBinaryBare(iterator.Value(), &post) if ctx.BlockTime().After(post.PollData.EndDate) || ctx.BlockTime().Equal(post.PollData.EndDate) { post.PollData.Open = false @@ -23,9 +22,9 @@ func EndBlocker(ctx sdk.Context, keeper Keeper) { ctx.EventManager().EmitEvent( sdk.NewEvent( - types.EventTypeClosePoll, - sdk.NewAttribute(types.AttributeKeyPostID, post.PostID.String()), - sdk.NewAttribute(types.AttributeKeyPostOwner, post.Creator.String()), + EventTypeClosePoll, + sdk.NewAttribute(AttributeKeyPostID, post.PostID.String()), + sdk.NewAttribute(AttributeKeyPostOwner, post.Creator.String()), ), ) } diff --git a/x/posts/alias.go b/x/posts/alias.go index e0f8fa54e9..8a3d2a4377 100644 --- a/x/posts/alias.go +++ b/x/posts/alias.go @@ -8,9 +8,11 @@ import ( "github.com/desmos-labs/desmos/x/posts/internal/keeper" "github.com/desmos-labs/desmos/x/posts/internal/simulation" "github.com/desmos-labs/desmos/x/posts/internal/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/common" - "github.com/desmos-labs/desmos/x/posts/internal/types/polls" - "github.com/desmos-labs/desmos/x/posts/internal/types/reactions" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" + "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" ) const ( @@ -21,6 +23,7 @@ const ( OpWeightMsgAnswerPoll = simulation.OpWeightMsgAnswerPoll OpWeightMsgRegisterReaction = simulation.OpWeightMsgRegisterReaction DefaultGasValue = simulation.DefaultGasValue + DefaultParamspace = types.DefaultParamspace EventTypePostCreated = types.EventTypePostCreated EventTypePostEdited = types.EventTypePostEdited EventTypePostReactionAdded = types.EventTypePostReactionAdded @@ -39,7 +42,6 @@ const ( AttributeKeyReactionShortCode = types.AttributeKeyReactionShortCode AttributeKeyReactionCreator = types.AttributeKeyReactionCreator AttributeKeyReactionSubSpace = types.AttributeKeyReactionSubSpace - DefaultParamspace = types.DefaultParamspace ModuleName = common.ModuleName RouterKey = common.RouterKey StoreKey = common.StoreKey @@ -63,51 +65,25 @@ const ( var ( // functions aliases - NewMsgAnswerPoll = types.NewMsgAnswerPoll - NewMsgCreatePost = types.NewMsgCreatePost - NewMsgEditPost = types.NewMsgEditPost - ComputeID = types.ComputeID - ParsePostID = types.ParsePostID - NewPost = types.NewPost - NewMsgAddPostReaction = types.NewMsgAddPostReaction - NewMsgRemovePostReaction = types.NewMsgRemovePostReaction - NewPostResponse = types.NewPostResponse - PostStoreKey = types.PostStoreKey - PostCommentsStoreKey = types.PostCommentsStoreKey - PostReactionsStoreKey = types.PostReactionsStoreKey - ReactionsStoreKey = types.ReactionsStoreKey - PollAnswersStoreKey = types.PollAnswersStoreKey - NewMsgRegisterReaction = types.NewMsgRegisterReaction - DefaultQueryPostsParams = types.DefaultQueryPostsParams - NewGenesisState = types.NewGenesisState - DefaultGenesisState = types.DefaultGenesisState - ValidateGenesis = types.ValidateGenesis - ParamKeyTable = types.ParamKeyTable - NewParams = types.NewParams - DefaultParams = types.DefaultParams - ValidateMaxPostMessageLengthParam = types.ValidateMaxPostMessageLengthParam - ValidateMaxOptionalDataFieldNumberParam = types.ValidateMaxOptionalDataFieldNumberParam - ValidateMaxOptionalDataFieldValueLengthParam = types.ValidateMaxOptionalDataFieldValueLengthParam - RegisterCodec = types.RegisterCodec - NewPostMedia = common.NewPostMedia - ValidateURI = common.ValidateURI - NewPostMedias = common.NewPostMedias - GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue - ParseAnswerID = polls.ParseAnswerID - NewPollAnswer = polls.NewPollAnswer - NewPollAnswers = polls.NewPollAnswers NewPollData = polls.NewPollData ArePollDataEquals = polls.ArePollDataEquals NewUserAnswer = polls.NewUserAnswer NewUserAnswers = polls.NewUserAnswers + ParseAnswerID = polls.ParseAnswerID + NewPollAnswer = polls.NewPollAnswer + NewPollAnswers = polls.NewPollAnswers NewPostReaction = reactions.NewPostReaction NewPostReactions = reactions.NewPostReactions NewReaction = reactions.NewReaction IsEmoji = reactions.IsEmoji NewReactions = reactions.NewReactions - NewHandler = keeper.NewHandler - ValidatePost = keeper.ValidatePost - NewKeeper = keeper.NewKeeper + NewMsgAddPostReaction = msgs.NewMsgAddPostReaction + NewMsgRemovePostReaction = msgs.NewMsgRemovePostReaction + NewMsgAnswerPoll = msgs.NewMsgAnswerPoll + NewMsgCreatePost = msgs.NewMsgCreatePost + NewMsgEditPost = msgs.NewMsgEditPost + NewMsgRegisterReaction = msgs.NewMsgRegisterReaction + RegisterMessagesCodec = msgs.RegisterMessagesCodec NewQuerier = keeper.NewQuerier RegisterInvariants = keeper.RegisterInvariants AllInvariants = keeper.AllInvariants @@ -115,6 +91,16 @@ var ( ValidCommentsDateInvariant = keeper.ValidCommentsDateInvariant ValidPostForReactionsInvariant = keeper.ValidPostForReactionsInvariant ValidPollForPollAnswersInvariant = keeper.ValidPollForPollAnswersInvariant + NewHandler = keeper.NewHandler + ValidatePost = keeper.ValidatePost + NewKeeper = keeper.NewKeeper + DecodeStore = simulation.DecodeStore + SimulateMsgAnswerToPoll = simulation.SimulateMsgAnswerToPoll + SimulateMsgAddPostReaction = simulation.SimulateMsgAddPostReaction + SimulateMsgRemovePostReaction = simulation.SimulateMsgRemovePostReaction + SimulateMsgRegisterReaction = simulation.SimulateMsgRegisterReaction + SimulateMsgCreatePost = simulation.SimulateMsgCreatePost + SimulateMsgEditPost = simulation.SimulateMsgEditPost RandomPost = simulation.RandomPost RandomPostData = simulation.RandomPostData RandomPostReactionData = simulation.RandomPostReactionData @@ -135,15 +121,36 @@ var ( WeightedOperations = simulation.WeightedOperations RandomizedGenState = simulation.RandomizedGenState ParamChanges = simulation.ParamChanges - DecodeStore = simulation.DecodeStore - SimulateMsgAnswerToPoll = simulation.SimulateMsgAnswerToPoll - SimulateMsgAddPostReaction = simulation.SimulateMsgAddPostReaction - SimulateMsgRemovePostReaction = simulation.SimulateMsgRemovePostReaction - SimulateMsgRegisterReaction = simulation.SimulateMsgRegisterReaction - SimulateMsgCreatePost = simulation.SimulateMsgCreatePost - SimulateMsgEditPost = simulation.SimulateMsgEditPost + ParamKeyTable = types.ParamKeyTable + NewParams = types.NewParams + DefaultParams = types.DefaultParams + ValidateMaxPostMessageLengthParam = types.ValidateMaxPostMessageLengthParam + ValidateMaxOptionalDataFieldNumberParam = types.ValidateMaxOptionalDataFieldNumberParam + ValidateMaxOptionalDataFieldValueLengthParam = types.ValidateMaxOptionalDataFieldValueLengthParam + DefaultQueryPostsParams = types.DefaultQueryPostsParams + NewGenesisState = types.NewGenesisState + DefaultGenesisState = types.DefaultGenesisState + ValidateGenesis = types.ValidateGenesis + RegisterCodec = types.RegisterCodec + PostStoreKey = models.PostStoreKey + PostCommentsStoreKey = models.PostCommentsStoreKey + PostReactionsStoreKey = models.PostReactionsStoreKey + ReactionsStoreKey = models.ReactionsStoreKey + PollAnswersStoreKey = models.PollAnswersStoreKey + RegisterModelsCodec = models.RegisterModelsCodec + ComputeID = models.ComputeID + ParsePostID = models.ParsePostID + NewPost = models.NewPost + NewPostResponse = models.NewPostResponse + NewPostMedia = common.NewPostMedia + ValidateURI = common.ValidateURI + NewPostMedias = common.NewPostMedias + GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue // variable aliases + MsgsCodec = msgs.MsgsCodec + RandomMimeTypes = simulation.RandomMimeTypes + RandomHosts = simulation.RandomHosts DefaultMaxPostMessageLength = types.DefaultMaxPostMessageLength DefaultMaxOptionalDataFieldsNumber = types.DefaultMaxOptionalDataFieldsNumber DefaultMaxOptionalDataFieldValueLength = types.DefaultMaxOptionalDataFieldValueLength @@ -151,6 +158,7 @@ var ( MaxOptionalDataFieldsNumberKey = types.MaxOptionalDataFieldsNumberKey MaxOptionalDataFieldValueLengthKey = types.MaxOptionalDataFieldValueLengthKey ModuleCdc = types.ModuleCdc + ModelsCdc = models.ModelsCdc Sha256RegEx = common.Sha256RegEx HashtagRegEx = common.HashtagRegEx ShortCodeRegEx = common.ShortCodeRegEx @@ -161,42 +169,40 @@ var ( PostReactionsStorePrefix = common.PostReactionsStorePrefix ReactionsStorePrefix = common.ReactionsStorePrefix PollAnswersStorePrefix = common.PollAnswersStorePrefix - RandomMimeTypes = simulation.RandomMimeTypes - RandomHosts = simulation.RandomHosts ) type ( - MsgAnswerPoll = types.MsgAnswerPoll - PollAnswersQueryResponse = types.PollAnswersQueryResponse - MsgCreatePost = types.MsgCreatePost - MsgEditPost = types.MsgEditPost - PostID = types.PostID - PostIDs = types.PostIDs - Post = types.Post - Posts = types.Posts - MsgAddPostReaction = types.MsgAddPostReaction - MsgRemovePostReaction = types.MsgRemovePostReaction - PostQueryResponse = types.PostQueryResponse - MsgRegisterReaction = types.MsgRegisterReaction - QueryPostsParams = types.QueryPostsParams - GenesisState = types.GenesisState - Params = types.Params + PollAnswersQueryResponse = models.PollAnswersQueryResponse + PostID = models.PostID + PostIDs = models.PostIDs + Post = models.Post + Posts = models.Posts + PostQueryResponse = models.PostQueryResponse PostMedia = common.PostMedia PostMedias = common.PostMedias OptionalData = common.OptionalData KeyValue = common.KeyValue - AnswerID = polls.AnswerID - PollAnswer = polls.PollAnswer - PollAnswers = polls.PollAnswers PollData = polls.PollData UserAnswer = polls.UserAnswer UserAnswers = polls.UserAnswers + AnswerID = polls.AnswerID + PollAnswer = polls.PollAnswer + PollAnswers = polls.PollAnswers PostReaction = reactions.PostReaction PostReactions = reactions.PostReactions Reaction = reactions.Reaction Reactions = reactions.Reactions + MsgAddPostReaction = msgs.MsgAddPostReaction + MsgRemovePostReaction = msgs.MsgRemovePostReaction + MsgAnswerPoll = msgs.MsgAnswerPoll + MsgCreatePost = msgs.MsgCreatePost + MsgEditPost = msgs.MsgEditPost + MsgRegisterReaction = msgs.MsgRegisterReaction Keeper = keeper.Keeper PostData = simulation.PostData PostReactionData = simulation.PostReactionData ReactionData = simulation.ReactionData + Params = types.Params + QueryPostsParams = types.QueryPostsParams + GenesisState = types.GenesisState ) diff --git a/x/posts/genesis.go b/x/posts/genesis.go index 4783d1ca0f..e4ebe10ae8 100644 --- a/x/posts/genesis.go +++ b/x/posts/genesis.go @@ -5,8 +5,6 @@ import ( "sort" sdk "github.com/cosmos/cosmos-sdk/types" - params "github.com/desmos-labs/desmos/x/posts/internal/keeper" - "github.com/desmos-labs/desmos/x/posts/internal/types" abci "github.com/tendermint/tendermint/abci/types" ) @@ -28,7 +26,7 @@ func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.Valid // Sort the posts so that they are inserted based on their IDs sort.Sort(data.Posts) for _, post := range data.Posts { - if err := params.ValidatePost(ctx, keeper, post); err != nil { + if err := ValidatePost(ctx, keeper, post); err != nil { panic(err) } keeper.SavePost(ctx, post) @@ -36,7 +34,7 @@ func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.Valid for postID, usersAnswersDetails := range data.UsersPollAnswers { for _, userAnswersDetails := range usersAnswersDetails { - postID := types.PostID(postID) + postID := PostID(postID) if !postID.Valid() { panic(fmt.Errorf("invalid postID: %s", postID)) } @@ -52,7 +50,7 @@ func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.Valid for postID, postReactions := range data.PostReactions { for _, postReaction := range postReactions { - postID := types.PostID(postID) + postID := PostID(postID) if !postID.Valid() { panic(fmt.Errorf("invalid postID: %s", postID)) } diff --git a/x/posts/internal/keeper/common_test.go b/x/posts/internal/keeper/common_test.go index bb2b311afc..1a8584fa06 100644 --- a/x/posts/internal/keeper/common_test.go +++ b/x/posts/internal/keeper/common_test.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/params" "github.com/desmos-labs/desmos/x/posts/internal/keeper" "github.com/desmos-labs/desmos/x/posts/internal/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/tendermint/crypto" "github.com/tendermint/tendermint/libs/log" diff --git a/x/posts/internal/types/alias.go b/x/posts/internal/types/alias.go old mode 100644 new mode 100755 index 034d9bae52..a34d64aa1a --- a/x/posts/internal/types/alias.go +++ b/x/posts/internal/types/alias.go @@ -5,9 +5,11 @@ package types // based on functionality in github.com/rigelrozanski/multitool import ( - "github.com/desmos-labs/desmos/x/posts/internal/types/common" - "github.com/desmos-labs/desmos/x/posts/internal/types/polls" - "github.com/desmos-labs/desmos/x/posts/internal/types/reactions" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" + "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" ) const ( @@ -34,10 +36,6 @@ const ( var ( // functions aliases - GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue - NewPostMedia = common.NewPostMedia - ValidateURI = common.ValidateURI - NewPostMedias = common.NewPostMedias ParseAnswerID = polls.ParseAnswerID NewPollAnswer = polls.NewPollAnswer NewPollAnswers = polls.NewPollAnswers @@ -50,8 +48,31 @@ var ( NewReaction = reactions.NewReaction IsEmoji = reactions.IsEmoji NewReactions = reactions.NewReactions + NewMsgAddPostReaction = msgs.NewMsgAddPostReaction + NewMsgRemovePostReaction = msgs.NewMsgRemovePostReaction + NewMsgAnswerPoll = msgs.NewMsgAnswerPoll + NewMsgCreatePost = msgs.NewMsgCreatePost + NewMsgEditPost = msgs.NewMsgEditPost + NewMsgRegisterReaction = msgs.NewMsgRegisterReaction + RegisterMessagesCodec = msgs.RegisterMessagesCodec + ComputeID = models.ComputeID + ParsePostID = models.ParsePostID + NewPost = models.NewPost + NewPostResponse = models.NewPostResponse + PostStoreKey = models.PostStoreKey + PostCommentsStoreKey = models.PostCommentsStoreKey + PostReactionsStoreKey = models.PostReactionsStoreKey + ReactionsStoreKey = models.ReactionsStoreKey + PollAnswersStoreKey = models.PollAnswersStoreKey + RegisterModelsCodec = models.RegisterModelsCodec + NewPostMedia = common.NewPostMedia + ValidateURI = common.ValidateURI + NewPostMedias = common.NewPostMedias + GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue // variable aliases + MsgsCodec = msgs.MsgsCodec + ModelsCdc = models.ModelsCdc Sha256RegEx = common.Sha256RegEx HashtagRegEx = common.HashtagRegEx ShortCodeRegEx = common.ShortCodeRegEx @@ -65,18 +86,30 @@ var ( ) type ( - OptionalData = common.OptionalData - KeyValue = common.KeyValue - PostMedia = common.PostMedia - PostMedias = common.PostMedias - AnswerID = polls.AnswerID - PollAnswer = polls.PollAnswer - PollAnswers = polls.PollAnswers - PollData = polls.PollData - UserAnswer = polls.UserAnswer - UserAnswers = polls.UserAnswers - PostReaction = reactions.PostReaction - PostReactions = reactions.PostReactions - Reaction = reactions.Reaction - Reactions = reactions.Reactions + PostID = models.PostID + PostIDs = models.PostIDs + Post = models.Post + Posts = models.Posts + PostQueryResponse = models.PostQueryResponse + PollAnswersQueryResponse = models.PollAnswersQueryResponse + PostMedia = common.PostMedia + PostMedias = common.PostMedias + OptionalData = common.OptionalData + KeyValue = common.KeyValue + AnswerID = polls.AnswerID + PollAnswer = polls.PollAnswer + PollAnswers = polls.PollAnswers + PollData = polls.PollData + UserAnswer = polls.UserAnswer + UserAnswers = polls.UserAnswers + PostReaction = reactions.PostReaction + PostReactions = reactions.PostReactions + Reaction = reactions.Reaction + Reactions = reactions.Reactions + MsgAddPostReaction = msgs.MsgAddPostReaction + MsgRemovePostReaction = msgs.MsgRemovePostReaction + MsgAnswerPoll = msgs.MsgAnswerPoll + MsgCreatePost = msgs.MsgCreatePost + MsgEditPost = msgs.MsgEditPost + MsgRegisterReaction = msgs.MsgRegisterReaction ) diff --git a/x/posts/internal/types/codec.go b/x/posts/internal/types/codec.go index b8eccdcde8..251e823e88 100644 --- a/x/posts/internal/types/codec.go +++ b/x/posts/internal/types/codec.go @@ -12,10 +12,6 @@ func init() { } func RegisterCodec(cdc *codec.Codec) { - cdc.RegisterConcrete(MsgCreatePost{}, "desmos/MsgCreatePost", nil) - cdc.RegisterConcrete(MsgEditPost{}, "desmos/MsgEditPost", nil) - cdc.RegisterConcrete(MsgAddPostReaction{}, "desmos/MsgAddPostReaction", nil) - cdc.RegisterConcrete(MsgRemovePostReaction{}, "desmos/MsgRemovePostReaction", nil) - cdc.RegisterConcrete(MsgAnswerPoll{}, "desmos/MsgAnswerPoll", nil) - cdc.RegisterConcrete(MsgRegisterReaction{}, "desmos/MsgRegisterReaction", nil) + RegisterModelsCodec(cdc) + RegisterMessagesCodec(cdc) } diff --git a/x/posts/internal/types/models/alias.go b/x/posts/internal/types/models/alias.go new file mode 100755 index 0000000000..9b2f5da129 --- /dev/null +++ b/x/posts/internal/types/models/alias.go @@ -0,0 +1,82 @@ +package models + +// nolint +// autogenerated code using github.com/haasted/alias-generator. +// based on functionality in github.com/rigelrozanski/multitool + +import ( + "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" +) + +const ( + ModuleName = common.ModuleName + RouterKey = common.RouterKey + StoreKey = common.StoreKey + ActionCreatePost = common.ActionCreatePost + ActionEditPost = common.ActionEditPost + ActionAnswerPoll = common.ActionAnswerPoll + ActionAddPostReaction = common.ActionAddPostReaction + ActionRemovePostReaction = common.ActionRemovePostReaction + ActionRegisterReaction = common.ActionRegisterReaction + QuerierRoute = common.QuerierRoute + QueryPost = common.QueryPost + QueryPosts = common.QueryPosts + QueryPollAnswers = common.QueryPollAnswers + QueryRegisteredReactions = common.QueryRegisteredReactions + QueryParams = common.QueryParams + PostSortByCreationDate = common.PostSortByCreationDate + PostSortByID = common.PostSortByID + PostSortOrderAscending = common.PostSortOrderAscending + PostSortOrderDescending = common.PostSortOrderDescending +) + +var ( + // functions aliases + ParseAnswerID = polls.ParseAnswerID + NewPollAnswer = polls.NewPollAnswer + NewPollAnswers = polls.NewPollAnswers + NewPollData = polls.NewPollData + ArePollDataEquals = polls.ArePollDataEquals + NewUserAnswer = polls.NewUserAnswer + NewUserAnswers = polls.NewUserAnswers + NewPostReaction = reactions.NewPostReaction + NewPostReactions = reactions.NewPostReactions + NewReaction = reactions.NewReaction + IsEmoji = reactions.IsEmoji + NewReactions = reactions.NewReactions + NewPostMedia = common.NewPostMedia + ValidateURI = common.ValidateURI + NewPostMedias = common.NewPostMedias + GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue + + // variable aliases + Sha256RegEx = common.Sha256RegEx + HashtagRegEx = common.HashtagRegEx + ShortCodeRegEx = common.ShortCodeRegEx + URIRegEx = common.URIRegEx + ModuleAddress = common.ModuleAddress + PostStorePrefix = common.PostStorePrefix + PostCommentsStorePrefix = common.PostCommentsStorePrefix + PostReactionsStorePrefix = common.PostReactionsStorePrefix + ReactionsStorePrefix = common.ReactionsStorePrefix + PollAnswersStorePrefix = common.PollAnswersStorePrefix +) + +type ( + OptionalData = common.OptionalData + KeyValue = common.KeyValue + PostMedia = common.PostMedia + PostMedias = common.PostMedias + AnswerID = polls.AnswerID + PollAnswer = polls.PollAnswer + PollAnswers = polls.PollAnswers + PollData = polls.PollData + UserAnswer = polls.UserAnswer + UserAnswers = polls.UserAnswers + PostReaction = reactions.PostReaction + PostReactions = reactions.PostReactions + Reaction = reactions.Reaction + Reactions = reactions.Reactions +) diff --git a/x/posts/internal/types/models/codec.go b/x/posts/internal/types/models/codec.go new file mode 100644 index 0000000000..3ca3b0f17c --- /dev/null +++ b/x/posts/internal/types/models/codec.go @@ -0,0 +1,17 @@ +package models + +import ( + "github.com/cosmos/cosmos-sdk/codec" +) + +// ModelsCdc is the codec +var ModelsCdc = codec.New() + +func init() { + RegisterModelsCodec(ModelsCdc) +} + +// RegisterModelsCodec registers concrete types on the Amino codec +func RegisterModelsCodec(cdc *codec.Codec) { + +} diff --git a/x/posts/internal/types/common/keys.go b/x/posts/internal/types/models/common/keys.go similarity index 100% rename from x/posts/internal/types/common/keys.go rename to x/posts/internal/types/models/common/keys.go diff --git a/x/posts/internal/types/common/post_media.go b/x/posts/internal/types/models/common/post_media.go similarity index 100% rename from x/posts/internal/types/common/post_media.go rename to x/posts/internal/types/models/common/post_media.go diff --git a/x/posts/internal/types/common/post_media_test.go b/x/posts/internal/types/models/common/post_media_test.go similarity index 99% rename from x/posts/internal/types/common/post_media_test.go rename to x/posts/internal/types/models/common/post_media_test.go index 559f79bb39..4e21f91981 100644 --- a/x/posts/internal/types/common/post_media_test.go +++ b/x/posts/internal/types/models/common/post_media_test.go @@ -5,7 +5,7 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" "github.com/stretchr/testify/require" ) diff --git a/x/posts/internal/types/common/post_optional_data.go b/x/posts/internal/types/models/common/post_optional_data.go similarity index 100% rename from x/posts/internal/types/common/post_optional_data.go rename to x/posts/internal/types/models/common/post_optional_data.go diff --git a/x/posts/internal/types/common/reactions.go b/x/posts/internal/types/models/common/reactions.go similarity index 100% rename from x/posts/internal/types/common/reactions.go rename to x/posts/internal/types/models/common/reactions.go diff --git a/x/posts/internal/types/keys.go b/x/posts/internal/types/models/keys.go similarity index 98% rename from x/posts/internal/types/keys.go rename to x/posts/internal/types/models/keys.go index a56e4cdcb0..e723fb5164 100644 --- a/x/posts/internal/types/keys.go +++ b/x/posts/internal/types/models/keys.go @@ -1,4 +1,4 @@ -package types +package models // PostStoreKey turns an id to a key used to store a post into the posts store // nolint: interfacer diff --git a/x/posts/internal/types/poll_answers_response.go b/x/posts/internal/types/models/poll_answers_response.go similarity index 97% rename from x/posts/internal/types/poll_answers_response.go rename to x/posts/internal/types/models/poll_answers_response.go index 7d586018f5..dc8555fb94 100644 --- a/x/posts/internal/types/poll_answers_response.go +++ b/x/posts/internal/types/models/poll_answers_response.go @@ -1,4 +1,4 @@ -package types +package models import ( "fmt" diff --git a/x/posts/internal/types/poll_answers_response_test.go b/x/posts/internal/types/models/poll_answers_response_test.go similarity index 77% rename from x/posts/internal/types/poll_answers_response_test.go rename to x/posts/internal/types/models/poll_answers_response_test.go index 8a087696bd..831ffb35be 100644 --- a/x/posts/internal/types/poll_answers_response_test.go +++ b/x/posts/internal/types/models/poll_answers_response_test.go @@ -1,9 +1,9 @@ -package types_test +package models_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" "github.com/stretchr/testify/require" "testing" @@ -13,7 +13,7 @@ func TestPollAnswersQueryResponse_String(t *testing.T) { testOwner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) - pollResponse := types.PollAnswersQueryResponse{ + pollResponse := models.PollAnswersQueryResponse{ PostID: "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", AnswersDetails: polls.NewUserAnswers( polls.NewUserAnswer([]polls.AnswerID{1, 2}, testOwner), diff --git a/x/posts/internal/types/polls/poll_answer.go b/x/posts/internal/types/models/polls/poll_answer.go similarity index 100% rename from x/posts/internal/types/polls/poll_answer.go rename to x/posts/internal/types/models/polls/poll_answer.go diff --git a/x/posts/internal/types/polls/poll_answer_test.go b/x/posts/internal/types/models/polls/poll_answer_test.go similarity index 98% rename from x/posts/internal/types/polls/poll_answer_test.go rename to x/posts/internal/types/models/polls/poll_answer_test.go index bef3ff32eb..58e4763e49 100644 --- a/x/posts/internal/types/polls/poll_answer_test.go +++ b/x/posts/internal/types/models/polls/poll_answer_test.go @@ -1,7 +1,7 @@ package polls_test import ( - "github.com/desmos-labs/desmos/x/posts/internal/types/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" "github.com/stretchr/testify/require" "testing" diff --git a/x/posts/internal/types/polls/poll_data.go b/x/posts/internal/types/models/polls/poll_data.go similarity index 100% rename from x/posts/internal/types/polls/poll_data.go rename to x/posts/internal/types/models/polls/poll_data.go diff --git a/x/posts/internal/types/polls/poll_data_test.go b/x/posts/internal/types/models/polls/poll_data_test.go similarity index 99% rename from x/posts/internal/types/polls/poll_data_test.go rename to x/posts/internal/types/models/polls/poll_data_test.go index 71ccc17653..f2f622bd2b 100644 --- a/x/posts/internal/types/polls/poll_data_test.go +++ b/x/posts/internal/types/models/polls/poll_data_test.go @@ -2,7 +2,7 @@ package polls_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" "github.com/stretchr/testify/require" "testing" diff --git a/x/posts/internal/types/post.go b/x/posts/internal/types/models/post.go similarity index 99% rename from x/posts/internal/types/post.go rename to x/posts/internal/types/models/post.go index fde270b3b2..b46a34938b 100644 --- a/x/posts/internal/types/post.go +++ b/x/posts/internal/types/models/post.go @@ -1,4 +1,4 @@ -package types +package models import ( "crypto/sha256" diff --git a/x/posts/internal/types/post_response.go b/x/posts/internal/types/models/post_response.go similarity index 99% rename from x/posts/internal/types/post_response.go rename to x/posts/internal/types/models/post_response.go index 5e2ee59f08..e5b2c58da6 100644 --- a/x/posts/internal/types/post_response.go +++ b/x/posts/internal/types/models/post_response.go @@ -1,4 +1,4 @@ -package types +package models import ( "encoding/json" diff --git a/x/posts/internal/types/post_response_test.go b/x/posts/internal/types/models/post_response_test.go similarity index 82% rename from x/posts/internal/types/post_response_test.go rename to x/posts/internal/types/models/post_response_test.go index 6709b9a325..d9e928cc05 100644 --- a/x/posts/internal/types/post_response_test.go +++ b/x/posts/internal/types/models/post_response_test.go @@ -1,4 +1,4 @@ -package types_test +package models_test import ( "encoding/json" @@ -7,7 +7,7 @@ import ( "time" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" "github.com/stretchr/testify/require" ) @@ -24,7 +24,7 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { timeZone, err := time.LoadLocation("UTC") require.NoError(t, err) - post := types.NewPost( + post := models.NewPost( "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", "", "Post", @@ -35,48 +35,48 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { postOwner, ) - medias := types.NewPostMedias( - types.NewPostMedia("https://uri.com", "text/plain", []sdk.AccAddress{postOwner}), + medias := models.NewPostMedias( + models.NewPostMedia("https://uri.com", "text/plain", []sdk.AccAddress{postOwner}), ) - mediasNoTags := types.NewPostMedias( - types.NewPostMedia("https://uri.com", "text/plain", nil), + mediasNoTags := models.NewPostMedias( + models.NewPostMedia("https://uri.com", "text/plain", nil), ) - pollData := types.NewPollData( + pollData := models.NewPollData( "poll?", time.Date(2050, 1, 1, 15, 15, 00, 000, timeZone), - types.PollAnswers{ - types.NewPollAnswer(types.AnswerID(1), "Yes"), - types.NewPollAnswer(types.AnswerID(2), "No"), + models.PollAnswers{ + models.NewPollAnswer(models.AnswerID(1), "Yes"), + models.NewPollAnswer(models.AnswerID(2), "No"), }, true, false, true, ) - answersDetails := types.NewUserAnswers( - types.NewUserAnswer([]types.AnswerID{types.AnswerID(1)}, liker), + answersDetails := models.NewUserAnswers( + models.NewUserAnswer([]models.AnswerID{models.AnswerID(1)}, liker), ) - children := types.PostIDs{ + children := models.PostIDs{ "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", } - reactionsResponses := []types.PostReaction{ - types.NewPostReaction(":like:", "https://example.com/like", liker), - types.NewPostReaction(":+1:", "👍", otherLiker), + reactionsResponses := []models.PostReaction{ + models.NewPostReaction(":like:", "https://example.com/like", liker), + models.NewPostReaction(":+1:", "👍", otherLiker), } tests := []struct { name string - response types.PostQueryResponse + response models.PostQueryResponse expResponse string }{ { name: "Post Query Response with Post that contains media and poll", - response: types.NewPostResponse( + response: models.NewPostResponse( post.WithMedias(medias).WithPollData(pollData), answersDetails, reactionsResponses, @@ -86,7 +86,7 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { }, { name: "Post Query Response with Post that contains media without tags", - response: types.NewPostResponse( + response: models.NewPostResponse( post.WithMedias(mediasNoTags), answersDetails, reactionsResponses, @@ -96,7 +96,7 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { }, { name: "Post Query with Post that not contains poll", - response: types.NewPostResponse( + response: models.NewPostResponse( post.WithMedias(medias), nil, reactionsResponses, @@ -106,7 +106,7 @@ func TestPostQueryResponse_MarshalJSON(t *testing.T) { }, { name: "Post Query Response with Post that not contains media", - response: types.NewPostResponse( + response: models.NewPostResponse( post.WithPollData(pollData), answersDetails, reactionsResponses, @@ -139,22 +139,22 @@ func TestPostQueryResponse_String(t *testing.T) { timeZone, err := time.LoadLocation("UTC") require.NoError(t, err) - medias := types.NewPostMedias(types.NewPostMedia("https://uri.com", "text/plain", []sdk.AccAddress{postOwner})) + medias := models.NewPostMedias(models.NewPostMedia("https://uri.com", "text/plain", []sdk.AccAddress{postOwner})) - pollData := types.NewPollData( + pollData := models.NewPollData( "poll?", time.Now().UTC().Add(time.Hour), - types.NewPollAnswers( - types.NewPollAnswer(types.AnswerID(1), "Yes"), - types.NewPollAnswer(types.AnswerID(2), "No"), + models.NewPollAnswers( + models.NewPollAnswer(models.AnswerID(1), "Yes"), + models.NewPollAnswer(models.AnswerID(2), "No"), ), true, false, true, ) - postResponse := types.NewPostResponse( - types.NewPost( + postResponse := models.NewPostResponse( + models.NewPost( "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", "", "Post", @@ -164,14 +164,14 @@ func TestPostQueryResponse_String(t *testing.T) { time.Date(2020, 2, 2, 15, 0, 0, 0, timeZone), postOwner, ).WithMedias(medias).WithPollData(pollData), - types.NewUserAnswers( - types.NewUserAnswer([]types.AnswerID{types.AnswerID(1)}, liker), + models.NewUserAnswers( + models.NewUserAnswer([]models.AnswerID{models.AnswerID(1)}, liker), ), - []types.PostReaction{ - types.NewPostReaction(":like:", "https://example.com/like", liker), - types.NewPostReaction(":+1:", "👍", otherLiker), + []models.PostReaction{ + models.NewPostReaction(":like:", "https://example.com/like", liker), + models.NewPostReaction(":+1:", "👍", otherLiker), }, - types.PostIDs{ + models.PostIDs{ "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", "dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1", }, diff --git a/x/posts/internal/types/post_test.go b/x/posts/internal/types/models/post_test.go similarity index 81% rename from x/posts/internal/types/post_test.go rename to x/posts/internal/types/models/post_test.go index 45c7224de3..41253cfdb6 100644 --- a/x/posts/internal/types/post_test.go +++ b/x/posts/internal/types/models/post_test.go @@ -1,13 +1,13 @@ -package types_test +package models_test import ( "testing" "time" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/common" - "github.com/desmos-labs/desmos/x/posts/internal/types/polls" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/polls" "github.com/stretchr/testify/require" ) @@ -29,20 +29,20 @@ func TestPostID_Equals(t *testing.T) { tests := []struct { name string - postID types.PostID - otherID types.PostID + postID models.PostID + otherID models.PostID expBool bool }{ { name: "Equal IDs returns true", - postID: types.ComputeID(creationDate, creator, subspace), - otherID: types.ComputeID(creationDate, creator, subspace), + postID: models.ComputeID(creationDate, creator, subspace), + otherID: models.ComputeID(creationDate, creator, subspace), expBool: true, }, { name: "Non Equal IDs returns false", - postID: types.ComputeID(creationDate, creator, subspace), - otherID: types.ComputeID(creationDate, creator, subspace2), + postID: models.ComputeID(creationDate, creator, subspace), + otherID: models.ComputeID(creationDate, creator, subspace2), expBool: false, }, } @@ -67,7 +67,7 @@ func TestPostID_String(t *testing.T) { require.NoError(t, err) subspace := "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" - computedID := types.ComputeID(creationDate, creator, subspace) + computedID := models.ComputeID(creationDate, creator, subspace) require.Equal(t, "f55d90114d81e70399d6330a57081b86ae1bdf928b78a57e88870f64240009ef", computedID.String()) } @@ -81,26 +81,26 @@ func TestPostIDs_Equals(t *testing.T) { id2 := []byte("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") tests := []struct { name string - first types.PostIDs - second types.PostIDs + first models.PostIDs + second models.PostIDs expEquals bool }{ { name: "Different length", - first: types.PostIDs{types.PostID(id), types.PostID(id)}, - second: types.PostIDs{types.PostID(id)}, + first: models.PostIDs{models.PostID(id), models.PostID(id)}, + second: models.PostIDs{models.PostID(id)}, expEquals: false, }, { name: "Different order", - first: types.PostIDs{types.PostID(id), types.PostID(id2)}, - second: types.PostIDs{types.PostID(id2), types.PostID(id)}, + first: models.PostIDs{models.PostID(id), models.PostID(id2)}, + second: models.PostIDs{models.PostID(id2), models.PostID(id)}, expEquals: false, }, { name: "Same length and order", - first: types.PostIDs{types.PostID(id), types.PostID(id2)}, - second: types.PostIDs{types.PostID(id), types.PostID(id2)}, + first: models.PostIDs{models.PostID(id), models.PostID(id2)}, + second: models.PostIDs{models.PostID(id), models.PostID(id2)}, expEquals: true, }, } @@ -118,23 +118,23 @@ func TestPostIDs_AppendIfMissing(t *testing.T) { id2 := []byte("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") tests := []struct { name string - IDs types.PostIDs - newID types.PostID - expIDs types.PostIDs + IDs models.PostIDs + newID models.PostID + expIDs models.PostIDs expEdited bool }{ { name: "AppendIfMissing dont append anything", - IDs: types.PostIDs{types.PostID(id)}, - newID: types.PostID(id), - expIDs: types.PostIDs{types.PostID(id)}, + IDs: models.PostIDs{models.PostID(id)}, + newID: models.PostID(id), + expIDs: models.PostIDs{models.PostID(id)}, expEdited: false, }, { name: "AppendIfMissing append something", - IDs: types.PostIDs{types.PostID(id)}, - newID: types.PostID(id2), - expIDs: types.PostIDs{types.PostID(id), types.PostID(id2)}, + IDs: models.PostIDs{models.PostID(id)}, + newID: models.PostID(id2), + expIDs: models.PostIDs{models.PostID(id), models.PostID(id2)}, expEdited: true, }, } @@ -154,8 +154,8 @@ func TestPostIDs_AppendIfMissing(t *testing.T) { // ----------- func TestPost_String(t *testing.T) { - id := types.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") - id2 := types.PostID("e1ba4807a15d8579f79cfd90a07fc015e6125565c9271eb94aded0b2ebf86163") + id := models.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") + id2 := models.PostID("e1ba4807a15d8579f79cfd90a07fc015e6125565c9271eb94aded0b2ebf86163") owner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -163,7 +163,7 @@ func TestPost_String(t *testing.T) { require.NoError(t, err) date := time.Date(2020, 1, 1, 12, 00, 00, 000, timeZone) - post := types.Post{ + post := models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -182,8 +182,8 @@ func TestPost_String(t *testing.T) { } func TestPost_Validate(t *testing.T) { - id := types.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") - id2 := types.PostID("e1ba4807a15d8579f79cfd90a07fc015e6125565c9271eb94aded0b2ebf86163") + id := models.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") + id2 := models.PostID("e1ba4807a15d8579f79cfd90a07fc015e6125565c9271eb94aded0b2ebf86163") owner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -210,52 +210,52 @@ func TestPost_Validate(t *testing.T) { tests := []struct { name string - post types.Post + post models.Post expError string }{ { name: "Invalid postID", - post: types.NewPost("", "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), + post: models.NewPost("", "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), expError: "invalid postID: ", }, { name: "Invalid post owner", - post: types.NewPost(id, id2, "", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, nil).WithMedias(medias).WithPollData(pollData), + post: models.NewPost(id, id2, "", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, nil).WithMedias(medias).WithPollData(pollData), expError: "invalid post owner: ", }, { name: "Empty post message and media", - post: types.NewPost(id, id2, "", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), + post: models.NewPost(id, id2, "", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), expError: "post message or medias required, they cannot be both empty", }, { name: "Empty post message (blank) and media", - post: types.NewPost(id, id2, " ", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), + post: models.NewPost(id, id2, " ", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), expError: "post message or medias required, they cannot be both empty", }, { name: "Invalid post creation time", - post: types.NewPost(id, id2, "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, time.Time{}, owner).WithMedias(medias).WithPollData(pollData), + post: models.NewPost(id, id2, "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, time.Time{}, owner).WithMedias(medias).WithPollData(pollData), expError: "invalid post creation time: 0001-01-01 00:00:00 +0000 UTC", }, { name: "Invalid post last edit time", - post: types.Post{PostID: id, Creator: owner, Message: "Message", Subspace: "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", Created: date, LastEdited: date.AddDate(0, 0, -1)}, + post: models.Post{PostID: id, Creator: owner, Message: "Message", Subspace: "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", Created: date, LastEdited: date.AddDate(0, 0, -1)}, expError: "invalid post last edit time: 2019-12-31 12:00:00 +0000 UTC", }, { name: "Invalid post subspace", - post: types.NewPost(id, id2, "Message", true, "", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), + post: models.NewPost(id, id2, "Message", true, "", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), expError: "post subspace must be a valid sha-256 hash", }, { name: "Invalid post subspace(blank)", - post: types.NewPost(id, id2, "Message", true, " ", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), + post: models.NewPost(id, id2, "Message", true, " ", map[string]string{}, date, owner).WithMedias(medias).WithPollData(pollData), expError: "post subspace must be a valid sha-256 hash", }, { name: "Post creation data in future", - post: types.Post{ + post: models.Post{ PostID: id, ParentID: id2, Message: "Message", @@ -270,7 +270,7 @@ func TestPost_Validate(t *testing.T) { }, { name: "Post last edit date in future", - post: types.Post{ + post: models.Post{ PostID: id, ParentID: id2, Message: "Message", @@ -286,12 +286,12 @@ func TestPost_Validate(t *testing.T) { }, { name: "Valid post without poll data", - post: types.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithMedias(medias), + post: models.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithMedias(medias), expError: "", }, { name: "Valid post without medias", - post: types.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), + post: models.NewPost(id, "", "Message", true, "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", map[string]string{}, date, owner).WithPollData(pollData), expError: "", }, } @@ -309,8 +309,8 @@ func TestPost_Validate(t *testing.T) { } func TestPost_Equals(t *testing.T) { - id := types.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") - id2 := types.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") + id := models.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") + id2 := models.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") owner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -342,13 +342,13 @@ func TestPost_Equals(t *testing.T) { tests := []struct { name string - first types.Post - second types.Post + first models.Post + second models.Post expEquals bool }{ { name: "Different post ID", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -360,7 +360,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id2, ParentID: id, Message: "My post message", @@ -376,7 +376,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different parent ID", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id, Message: "My post message", @@ -388,7 +388,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -404,7 +404,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different message", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -416,7 +416,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "Another post message", @@ -432,7 +432,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different creation time", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -444,7 +444,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -460,7 +460,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different last edited", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -472,7 +472,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -488,7 +488,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different allows comments", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -500,7 +500,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -516,7 +516,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different subspace", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -528,7 +528,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -544,7 +544,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different optional data", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -558,7 +558,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -576,7 +576,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different owner", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -588,7 +588,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -604,7 +604,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different medias", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -616,7 +616,7 @@ func TestPost_Equals(t *testing.T) { Creator: owner, Medias: medias, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -632,7 +632,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Different polls", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -645,7 +645,7 @@ func TestPost_Equals(t *testing.T) { Medias: medias, PollData: nil, }, - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -662,7 +662,7 @@ func TestPost_Equals(t *testing.T) { }, { name: "Equals posts", - first: types.Post{ + first: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -673,7 +673,7 @@ func TestPost_Equals(t *testing.T) { OptionalData: map[string]string{}, Creator: owner, }.WithMedias(medias).WithPollData(pollData), - second: types.Post{ + second: models.Post{ PostID: id, ParentID: id2, Message: "My post message", @@ -697,8 +697,8 @@ func TestPost_Equals(t *testing.T) { } func TestPost_GetPostHashtags(t *testing.T) { - id := types.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") - id2 := types.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") + id := models.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") + id2 := models.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") owner, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -709,12 +709,12 @@ func TestPost_GetPostHashtags(t *testing.T) { tests := []struct { name string - post types.Post + post models.Post expHashtags []string }{ { name: "Hashtags in message extracted correctly (spaced hashtags)", - post: types.NewPost(id, + post: models.NewPost(id, id2, "Post with #test #desmos", false, @@ -727,7 +727,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "Hashtags in message extracted correctly (non-spaced hashtags)", - post: types.NewPost(id, + post: models.NewPost(id, id2, "Post with #test#desmos", false, @@ -740,7 +740,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "Hashtags in message extracted correctly (underscore separated hashtags)", - post: types.NewPost(id, + post: models.NewPost(id, id2, "Post with #test_#desmos", false, @@ -753,7 +753,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "Hashtags in message extracted correctly (only number hashtag)", - post: types.NewPost(id, + post: models.NewPost(id, id2, "Post with #101112", false, @@ -766,7 +766,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "No hashtags in message", - post: types.NewPost(id, + post: models.NewPost(id, id2, "Post with no hashtag", false, @@ -779,7 +779,7 @@ func TestPost_GetPostHashtags(t *testing.T) { }, { name: "No same hashtags inside string array", - post: types.NewPost(id, + post: models.NewPost(id, id2, "Post with double #hashtag #hashtag", false, @@ -805,8 +805,8 @@ func TestPost_GetPostHashtags(t *testing.T) { // --- Posts // ----------- func TestPosts_String(t *testing.T) { - id := types.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") - id2 := types.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") + id := models.PostID("19de02e105c68a60e45c289bff19fde745bca9c63c38f2095b59e8e8090ae1af") + id2 := models.PostID("f1b909289cd23188c19da17ae5d5a05ad65623b0fad756e5e03c8c936ca876fd") owner1, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") require.NoError(t, err) @@ -835,9 +835,9 @@ func TestPosts_String(t *testing.T) { date := time.Date(2020, 1, 1, 12, 0, 00, 000, timeZone) - posts := types.Posts{ - types.NewPost(id, id2, "Post 1", false, "external-ref-1", map[string]string{}, date, owner1).WithMedias(medias).WithPollData(pollData), - types.NewPost(id, id2, "Post 2", false, "external-ref-1", map[string]string{}, date, owner2).WithMedias(medias).WithPollData(pollData), + posts := models.Posts{ + models.NewPost(id, id2, "Post 1", false, "external-ref-1", map[string]string{}, date, owner1).WithMedias(medias).WithPollData(pollData), + models.NewPost(id, id2, "Post 2", false, "external-ref-1", map[string]string{}, date, owner2).WithMedias(medias).WithPollData(pollData), } expected := `ID - [Creator] Message diff --git a/x/posts/internal/types/reactions/post_reaction.go b/x/posts/internal/types/models/reactions/post_reaction.go similarity index 98% rename from x/posts/internal/types/reactions/post_reaction.go rename to x/posts/internal/types/models/reactions/post_reaction.go index 8233bc3c68..0fb710ea7e 100644 --- a/x/posts/internal/types/reactions/post_reaction.go +++ b/x/posts/internal/types/models/reactions/post_reaction.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" emoji "github.com/desmos-labs/Go-Emoji-Utils" - "github.com/desmos-labs/desmos/x/posts/internal/types/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" ) // --------------- diff --git a/x/posts/internal/types/reactions/post_reaction_test.go b/x/posts/internal/types/models/reactions/post_reaction_test.go similarity index 99% rename from x/posts/internal/types/reactions/post_reaction_test.go rename to x/posts/internal/types/models/reactions/post_reaction_test.go index ba8b112028..92571f3701 100644 --- a/x/posts/internal/types/reactions/post_reaction_test.go +++ b/x/posts/internal/types/models/reactions/post_reaction_test.go @@ -5,7 +5,7 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types/reactions" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" "github.com/stretchr/testify/require" ) diff --git a/x/posts/internal/types/reactions/reaction.go b/x/posts/internal/types/models/reactions/reaction.go similarity index 97% rename from x/posts/internal/types/reactions/reaction.go rename to x/posts/internal/types/models/reactions/reaction.go index dae908358f..44c67c5214 100644 --- a/x/posts/internal/types/reactions/reaction.go +++ b/x/posts/internal/types/models/reactions/reaction.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" emoji "github.com/desmos-labs/Go-Emoji-Utils" - "github.com/desmos-labs/desmos/x/posts/internal/types/common" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/common" ) // Reaction represents a registered reaction that can be referenced diff --git a/x/posts/internal/types/reactions/reaction_test.go b/x/posts/internal/types/models/reactions/reaction_test.go similarity index 98% rename from x/posts/internal/types/reactions/reaction_test.go rename to x/posts/internal/types/models/reactions/reaction_test.go index f5eed5fc18..58a5132188 100644 --- a/x/posts/internal/types/reactions/reaction_test.go +++ b/x/posts/internal/types/models/reactions/reaction_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - "github.com/desmos-labs/desmos/x/posts/internal/types/reactions" + "github.com/desmos-labs/desmos/x/posts/internal/types/models/reactions" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/posts/internal/types/msgs/codec.go b/x/posts/internal/types/msgs/codec.go new file mode 100644 index 0000000000..23c8ca1bf3 --- /dev/null +++ b/x/posts/internal/types/msgs/codec.go @@ -0,0 +1,22 @@ +package msgs + +import ( + "github.com/cosmos/cosmos-sdk/codec" +) + +// MsgsCodec is the codec +var MsgsCodec = codec.New() + +func init() { + RegisterMessagesCodec(MsgsCodec) +} + +// RegisterMessagesCodec registers concrete types on the Amino codec +func RegisterMessagesCodec(cdc *codec.Codec) { + cdc.RegisterConcrete(MsgCreatePost{}, "desmos/MsgCreatePost", nil) + cdc.RegisterConcrete(MsgEditPost{}, "desmos/MsgEditPost", nil) + cdc.RegisterConcrete(MsgAddPostReaction{}, "desmos/MsgAddPostReaction", nil) + cdc.RegisterConcrete(MsgRemovePostReaction{}, "desmos/MsgRemovePostReaction", nil) + cdc.RegisterConcrete(MsgAnswerPoll{}, "desmos/MsgAnswerPoll", nil) + cdc.RegisterConcrete(MsgRegisterReaction{}, "desmos/MsgRegisterReaction", nil) +} diff --git a/x/posts/internal/types/msg_reactions.go b/x/posts/internal/types/msgs/msg_reactions.go similarity index 80% rename from x/posts/internal/types/msg_reactions.go rename to x/posts/internal/types/msgs/msg_reactions.go index 1af93b5f67..e67fbd722d 100644 --- a/x/posts/internal/types/msg_reactions.go +++ b/x/posts/internal/types/msgs/msg_reactions.go @@ -1,10 +1,11 @@ -package types +package msgs import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" ) // MsgRegisterReaction represents the message that must be used when wanting @@ -27,10 +28,10 @@ func NewMsgRegisterReaction(creator sdk.AccAddress, shortCode, value, subspace s } // Route should return the name of the module -func (msg MsgRegisterReaction) Route() string { return RouterKey } +func (msg MsgRegisterReaction) Route() string { return models.RouterKey } // Type should return the action -func (msg MsgRegisterReaction) Type() string { return ActionRegisterReaction } +func (msg MsgRegisterReaction) Type() string { return models.ActionRegisterReaction } // ValidateBasic runs stateless checks on the message func (msg MsgRegisterReaction) ValidateBasic() error { @@ -38,15 +39,15 @@ func (msg MsgRegisterReaction) ValidateBasic() error { return sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, fmt.Sprintf("Invalid creator address: %s", msg.Creator)) } - if !ShortCodeRegEx.MatchString(msg.ShortCode) { + if !models.ShortCodeRegEx.MatchString(msg.ShortCode) { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "The specified shortcode is not valid. To be valid it must only contains a-z, 0-9, - and _ and must start and end with a :") } - if !URIRegEx.MatchString(msg.Value) { + if !models.URIRegEx.MatchString(msg.Value) { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL") } - if !Sha256RegEx.MatchString(msg.Subspace) { + if !models.Sha256RegEx.MatchString(msg.Subspace) { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction subspace must be a valid sha-256 hash") } @@ -55,7 +56,7 @@ func (msg MsgRegisterReaction) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgRegisterReaction) GetSignBytes() []byte { - return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) + return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required diff --git a/x/posts/internal/types/msg_reactions_test.go b/x/posts/internal/types/msgs/msg_reactions_test.go similarity index 80% rename from x/posts/internal/types/msg_reactions_test.go rename to x/posts/internal/types/msgs/msg_reactions_test.go index 13e5822e8f..b47f43e3d0 100644 --- a/x/posts/internal/types/msg_reactions_test.go +++ b/x/posts/internal/types/msgs/msg_reactions_test.go @@ -1,15 +1,15 @@ -package types_test +package msgs_test import ( "fmt" "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/desmos-labs/desmos/x/posts/internal/types" + "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" "github.com/stretchr/testify/require" ) -var msgRegisterReaction = types.NewMsgRegisterReaction(testOwner, ":smile:", "https://smile.jpg", +var msgRegisterReaction = msgs.NewMsgRegisterReaction(testOwner, ":smile:", "https://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e") func TestMsgRegisterReaction_Route(t *testing.T) { @@ -25,53 +25,53 @@ func TestMsgRegisterReaction_Type(t *testing.T) { func TestMsgRegisterReaction_ValidateBasic(t *testing.T) { tests := []struct { name string - msg types.MsgRegisterReaction + msg msgs.MsgRegisterReaction error error }{ { name: "Invalid creator returns error", - msg: types.NewMsgRegisterReaction(nil, ":smile:", "https://smile.jpg", + msg: msgs.NewMsgRegisterReaction(nil, ":smile:", "https://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, fmt.Sprintf("Invalid creator address: %s", "")), }, { name: "Empty short code returns error", - msg: types.NewMsgRegisterReaction(testOwner, "", "https://smile.jpg", + msg: msgs.NewMsgRegisterReaction(testOwner, "", "https://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "The specified shortcode is not valid. To be valid it must only contains a-z, 0-9, - and _ and must start and end with a :"), }, { name: "Invalid short code returns error", - msg: types.NewMsgRegisterReaction(testOwner, ":smile", "https://smile.jpg", + msg: msgs.NewMsgRegisterReaction(testOwner, ":smile", "https://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "The specified shortcode is not valid. To be valid it must only contains a-z, 0-9, - and _ and must start and end with a :"), }, { name: "Empty value returns error", - msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "", + msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL"), }, { name: "Invalid value returns error (url)", - msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "htp://smile.jpg", + msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "htp://smile.jpg", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL"), }, { name: "Invalid value returns error (unicode)", - msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "U+1", + msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "U+1", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL"), }, { name: "Valid emoji value returns no error", - msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "💙", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), + msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "💙", "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction value should be a valid URL"), }, { name: "Invalid subspace returns error", - msg: types.NewMsgRegisterReaction(testOwner, ":smile:", "https://smile.jpg", + msg: msgs.NewMsgRegisterReaction(testOwner, ":smile:", "https://smile.jpg", "1234"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "reaction subspace must be a valid sha-256 hash"), }, diff --git a/x/posts/internal/types/msgs.go b/x/posts/internal/types/msgs/msgs.go similarity index 81% rename from x/posts/internal/types/msgs.go rename to x/posts/internal/types/msgs/msgs.go index ff6840710a..334eb70bfe 100644 --- a/x/posts/internal/types/msgs.go +++ b/x/posts/internal/types/msgs/msgs.go @@ -1,4 +1,4 @@ -package types +package msgs import ( "encoding/json" @@ -8,6 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" ) // ---------------------- @@ -16,21 +17,21 @@ import ( // MsgCreatePost defines a CreatePost message type MsgCreatePost struct { - ParentID PostID `json:"parent_id" yaml:"parent_id"` + ParentID models.PostID `json:"parent_id" yaml:"parent_id"` Message string `json:"message" yaml:"message"` AllowsComments bool `json:"allows_comments" yaml:"allows_comments"` Subspace string `json:"subspace" yaml:"subspace"` OptionalData map[string]string `json:"optional_data,omitempty" yaml:"optional_data,omitempty"` Creator sdk.AccAddress `json:"creator" yaml:"creator"` CreationDate time.Time `json:"creation_date" yaml:"creation_date"` - Medias PostMedias `json:"medias,omitempty" yaml:"medias,omitempty"` - PollData *PollData `json:"poll_data,omitempty" yaml:"poll_data,omitempty"` + Medias models.PostMedias `json:"medias,omitempty" yaml:"medias,omitempty"` + PollData *models.PollData `json:"poll_data,omitempty" yaml:"poll_data,omitempty"` } // NewMsgCreatePost is a constructor function for MsgCreatePost -func NewMsgCreatePost(message string, parentID PostID, allowsComments bool, subspace string, +func NewMsgCreatePost(message string, parentID models.PostID, allowsComments bool, subspace string, optionalData map[string]string, owner sdk.AccAddress, creationDate time.Time, - medias PostMedias, pollData *PollData) MsgCreatePost { + medias models.PostMedias, pollData *models.PollData) MsgCreatePost { return MsgCreatePost{ Message: message, ParentID: parentID, @@ -45,10 +46,10 @@ func NewMsgCreatePost(message string, parentID PostID, allowsComments bool, subs } // Route should return the name of the module -func (msg MsgCreatePost) Route() string { return RouterKey } +func (msg MsgCreatePost) Route() string { return models.RouterKey } // Type should return the action -func (msg MsgCreatePost) Type() string { return ActionCreatePost } +func (msg MsgCreatePost) Type() string { return models.ActionCreatePost } // ValidateBasic runs stateless checks on the message func (msg MsgCreatePost) ValidateBasic() error { @@ -60,7 +61,7 @@ func (msg MsgCreatePost) ValidateBasic() error { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post message, medias or poll are required and cannot be all blank or empty") } - if !Sha256RegEx.MatchString(msg.Subspace) { + if !models.Sha256RegEx.MatchString(msg.Subspace) { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post subspace must be a valid sha-256 hash") } @@ -92,7 +93,7 @@ func (msg MsgCreatePost) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgCreatePost) GetSignBytes() []byte { - return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) + return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required @@ -113,14 +114,14 @@ func (msg MsgCreatePost) MarshalJSON() ([]byte, error) { // MsgEditPost defines the EditPostMessage message type MsgEditPost struct { - PostID PostID `json:"post_id" yaml:"post_id"` + PostID models.PostID `json:"post_id" yaml:"post_id"` Message string `json:"message" yaml:"message"` Editor sdk.AccAddress `json:"editor" yaml:"editor"` EditDate time.Time `json:"edit_date" yaml:"edit_date"` } // NewMsgEditPost is the constructor function for MsgEditPost -func NewMsgEditPost(id PostID, message string, owner sdk.AccAddress, editDate time.Time) MsgEditPost { +func NewMsgEditPost(id models.PostID, message string, owner sdk.AccAddress, editDate time.Time) MsgEditPost { return MsgEditPost{ PostID: id, Message: message, @@ -130,10 +131,10 @@ func NewMsgEditPost(id PostID, message string, owner sdk.AccAddress, editDate ti } // Route should return the name of the module -func (msg MsgEditPost) Route() string { return RouterKey } +func (msg MsgEditPost) Route() string { return models.RouterKey } // Type should return the action -func (msg MsgEditPost) Type() string { return ActionEditPost } +func (msg MsgEditPost) Type() string { return models.ActionEditPost } // ValidateBasic runs stateless checks on the message func (msg MsgEditPost) ValidateBasic() error { @@ -162,7 +163,7 @@ func (msg MsgEditPost) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgEditPost) GetSignBytes() []byte { - return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) + return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required diff --git a/x/posts/internal/types/msgs_polls.go b/x/posts/internal/types/msgs/msgs_polls.go similarity index 69% rename from x/posts/internal/types/msgs_polls.go rename to x/posts/internal/types/msgs/msgs_polls.go index 6d5cb36fa3..a22bc2efeb 100644 --- a/x/posts/internal/types/msgs_polls.go +++ b/x/posts/internal/types/msgs/msgs_polls.go @@ -1,10 +1,11 @@ -package types +package msgs import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" ) // ---------------------- @@ -13,13 +14,13 @@ import ( // MsgAnswerPoll defines the AnswerPoll message type MsgAnswerPoll struct { - PostID PostID `json:"post_id" yaml:"post_id"` - UserAnswers []AnswerID `json:"answers" yaml:"answers"` - Answerer sdk.AccAddress `json:"answerer" yaml:"answerer"` + PostID models.PostID `json:"post_id" yaml:"post_id"` + UserAnswers []models.AnswerID `json:"answers" yaml:"answers"` + Answerer sdk.AccAddress `json:"answerer" yaml:"answerer"` } // NewMsgAnswerPoll is the constructor function for MsgAnswerPoll -func NewMsgAnswerPoll(id PostID, providedAnswers []AnswerID, answerer sdk.AccAddress) MsgAnswerPoll { +func NewMsgAnswerPoll(id models.PostID, providedAnswers []models.AnswerID, answerer sdk.AccAddress) MsgAnswerPoll { return MsgAnswerPoll{ PostID: id, UserAnswers: providedAnswers, @@ -28,10 +29,10 @@ func NewMsgAnswerPoll(id PostID, providedAnswers []AnswerID, answerer sdk.AccAdd } // Route should return the name of the module -func (msg MsgAnswerPoll) Route() string { return RouterKey } +func (msg MsgAnswerPoll) Route() string { return models.RouterKey } // Type should return the action -func (msg MsgAnswerPoll) Type() string { return ActionAnswerPoll } +func (msg MsgAnswerPoll) Type() string { return models.ActionAnswerPoll } // ValidateBasic runs stateless checks on the message func (msg MsgAnswerPoll) ValidateBasic() error { @@ -52,7 +53,7 @@ func (msg MsgAnswerPoll) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgAnswerPoll) GetSignBytes() []byte { - return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) + return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required diff --git a/x/posts/internal/types/msgs_polls_test.go b/x/posts/internal/types/msgs/msgs_polls_test.go similarity index 80% rename from x/posts/internal/types/msgs_polls_test.go rename to x/posts/internal/types/msgs/msgs_polls_test.go index 0340b6d14c..fdf627c13c 100644 --- a/x/posts/internal/types/msgs_polls_test.go +++ b/x/posts/internal/types/msgs/msgs_polls_test.go @@ -1,10 +1,11 @@ -package types_test +package msgs_test import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/desmos-labs/desmos/x/posts/internal/types" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" + "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" "github.com/stretchr/testify/require" ) @@ -12,7 +13,7 @@ import ( // --- MsgAnswerPoll // ---------------------- -var msgAnswerPollPost = types.NewMsgAnswerPoll(id, []types.AnswerID{1, 2}, testOwner) +var msgAnswerPollPost = msgs.NewMsgAnswerPoll(id, []models.AnswerID{1, 2}, testOwner) func TestMsgAnswerPollPost_Route(t *testing.T) { actual := msgAnswerPollPost.Route() @@ -27,27 +28,27 @@ func TestMsgAnswerPollPost_Type(t *testing.T) { func TestMsgAnswerPollPost_ValidateBasic(t *testing.T) { tests := []struct { name string - msg types.MsgAnswerPoll + msg msgs.MsgAnswerPoll error error }{ { name: "Invalid post id", - msg: types.NewMsgAnswerPoll("", []types.AnswerID{1, 2}, msgAnswerPollPost.Answerer), + msg: msgs.NewMsgAnswerPoll("", []models.AnswerID{1, 2}, msgAnswerPollPost.Answerer), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid post id: "), }, { name: "Invalid answerer address", - msg: types.NewMsgAnswerPoll(id, []types.AnswerID{1, 2}, nil), + msg: msgs.NewMsgAnswerPoll(id, []models.AnswerID{1, 2}, nil), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, "Invalid answerer address: "), }, { name: "Returns error when no answer is provided", - msg: types.NewMsgAnswerPoll(id, []types.AnswerID{}, msgAnswerPollPost.Answerer), + msg: msgs.NewMsgAnswerPoll(id, []models.AnswerID{}, msgAnswerPollPost.Answerer), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Provided answers must contains at least one answer"), }, { name: "Valid message returns no error", - msg: types.NewMsgAnswerPoll(id, []types.AnswerID{1, 2}, msgAnswerPollPost.Answerer), + msg: msgs.NewMsgAnswerPoll(id, []models.AnswerID{1, 2}, msgAnswerPollPost.Answerer), }, } diff --git a/x/posts/internal/types/msgs_post_reactions.go b/x/posts/internal/types/msgs/msgs_post_reactions.go similarity index 77% rename from x/posts/internal/types/msgs_post_reactions.go rename to x/posts/internal/types/msgs/msgs_post_reactions.go index 09a28e1a3d..475eddb4a3 100644 --- a/x/posts/internal/types/msgs_post_reactions.go +++ b/x/posts/internal/types/msgs/msgs_post_reactions.go @@ -1,4 +1,4 @@ -package types +package msgs import ( "fmt" @@ -6,6 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" emoji "github.com/desmos-labs/Go-Emoji-Utils" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" ) // ---------------------- @@ -14,13 +15,13 @@ import ( // MsgAddPostReaction defines the message to be used to add a reaction to a post type MsgAddPostReaction struct { - PostID PostID `json:"post_id" yaml:"post_id"` // Id of the post to react to + PostID models.PostID `json:"post_id" yaml:"post_id"` // Id of the post to react to Reaction string `json:"reaction" yaml:"reaction"` // Reaction of the reaction User sdk.AccAddress `json:"user" yaml:"user"` // Address of the user reacting to the post } // NewMsgAddPostReaction is a constructor function for MsgAddPostReaction -func NewMsgAddPostReaction(postID PostID, value string, user sdk.AccAddress) MsgAddPostReaction { +func NewMsgAddPostReaction(postID models.PostID, value string, user sdk.AccAddress) MsgAddPostReaction { return MsgAddPostReaction{ PostID: postID, User: user, @@ -29,10 +30,10 @@ func NewMsgAddPostReaction(postID PostID, value string, user sdk.AccAddress) Msg } // Route should return the name of the module -func (msg MsgAddPostReaction) Route() string { return RouterKey } +func (msg MsgAddPostReaction) Route() string { return models.RouterKey } // Type should return the action -func (msg MsgAddPostReaction) Type() string { return ActionAddPostReaction } +func (msg MsgAddPostReaction) Type() string { return models.ActionAddPostReaction } // ValidateBasic runs stateless checks on the message func (msg MsgAddPostReaction) ValidateBasic() error { @@ -45,7 +46,7 @@ func (msg MsgAddPostReaction) ValidateBasic() error { } _, err := emoji.LookupEmoji(msg.Reaction) - if !ShortCodeRegEx.MatchString(msg.Reaction) && err != nil { + if !models.ShortCodeRegEx.MatchString(msg.Reaction) && err != nil { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Reaction value must be an emoji or an emoji shortcode."+ "If a shortcode is provided, it must only contains a-z, 0-9, - and _ and must start and end with a :") } @@ -55,7 +56,7 @@ func (msg MsgAddPostReaction) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgAddPostReaction) GetSignBytes() []byte { - return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) + return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required @@ -70,13 +71,13 @@ func (msg MsgAddPostReaction) GetSigners() []sdk.AccAddress { // MsgRemovePostReaction defines the message to be used when wanting to remove // an existing reaction from a specific user having a specific value type MsgRemovePostReaction struct { - PostID PostID `json:"post_id" yaml:"post_id"` // Id of the post to unlike + PostID models.PostID `json:"post_id" yaml:"post_id"` // Id of the post to unlike Reaction string `json:"reaction" yaml:"reaction"` // Reaction of the reaction to be removed User sdk.AccAddress `json:"user" yaml:"user"` // Address of the user that has previously liked the post } // MsgUnlikePostPost is the constructor of MsgRemovePostReaction -func NewMsgRemovePostReaction(postID PostID, user sdk.AccAddress, value string) MsgRemovePostReaction { +func NewMsgRemovePostReaction(postID models.PostID, user sdk.AccAddress, value string) MsgRemovePostReaction { return MsgRemovePostReaction{ PostID: postID, User: user, @@ -85,10 +86,10 @@ func NewMsgRemovePostReaction(postID PostID, user sdk.AccAddress, value string) } // Route should return the name of the module -func (msg MsgRemovePostReaction) Route() string { return RouterKey } +func (msg MsgRemovePostReaction) Route() string { return models.RouterKey } // Type should return the action -func (msg MsgRemovePostReaction) Type() string { return ActionRemovePostReaction } +func (msg MsgRemovePostReaction) Type() string { return models.ActionRemovePostReaction } // ValidateBasic runs stateless checks on the message func (msg MsgRemovePostReaction) ValidateBasic() error { @@ -101,7 +102,7 @@ func (msg MsgRemovePostReaction) ValidateBasic() error { } _, err := emoji.LookupEmoji(msg.Reaction) - if !ShortCodeRegEx.MatchString(msg.Reaction) && err != nil { + if !models.ShortCodeRegEx.MatchString(msg.Reaction) && err != nil { return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Reaction value must be an emoji or an emoji shortcode. "+ "If a shortcode is provided, it must only contains a-z, 0-9, - and _ and must start and end with a :") } @@ -111,7 +112,7 @@ func (msg MsgRemovePostReaction) ValidateBasic() error { // GetSignBytes encodes the message for signing func (msg MsgRemovePostReaction) GetSignBytes() []byte { - return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(msg)) + return sdk.MustSortJSON(MsgsCodec.MustMarshalJSON(msg)) } // GetSigners defines whose signature is required diff --git a/x/posts/internal/types/msgs_post_reactions_test.go b/x/posts/internal/types/msgs/msgs_post_reactions_test.go similarity index 80% rename from x/posts/internal/types/msgs_post_reactions_test.go rename to x/posts/internal/types/msgs/msgs_post_reactions_test.go index 3d7f1d2d59..262a5f6b36 100644 --- a/x/posts/internal/types/msgs_post_reactions_test.go +++ b/x/posts/internal/types/msgs/msgs_post_reactions_test.go @@ -1,11 +1,12 @@ -package types_test +package msgs_test import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" emoji2 "github.com/desmos-labs/Go-Emoji-Utils" - "github.com/desmos-labs/desmos/x/posts/internal/types" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" + "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" "github.com/stretchr/testify/require" ) @@ -16,7 +17,7 @@ import ( func TestShortCodeRegEx(t *testing.T) { for _, emoji := range emoji2.Emojis { for _, shortcode := range emoji.Shortcodes { - res := types.ShortCodeRegEx.MatchString(shortcode) + res := models.ShortCodeRegEx.MatchString(shortcode) if !res { println(shortcode) } @@ -25,7 +26,7 @@ func TestShortCodeRegEx(t *testing.T) { } } -var msgPostReaction = types.NewMsgAddPostReaction(id, "like", testOwner) +var msgPostReaction = msgs.NewMsgAddPostReaction(id, "like", testOwner) func TestMsgAddPostReaction_Route(t *testing.T) { actual := msgPostReaction.Route() @@ -40,32 +41,32 @@ func TestMsgAddPostReaction_Type(t *testing.T) { func TestMsgAddPostReaction_ValidateBasic(t *testing.T) { tests := []struct { name string - msg types.MsgAddPostReaction + msg msgs.MsgAddPostReaction error error }{ { name: "Invalid post id returns error", - msg: types.NewMsgAddPostReaction("", ":like:", testOwner), + msg: msgs.NewMsgAddPostReaction("", ":like:", testOwner), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid post id: "), }, { name: "Invalid user returns error", - msg: types.NewMsgAddPostReaction(id, ":like:", nil), + msg: msgs.NewMsgAddPostReaction(id, ":like:", nil), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, "Invalid user address: "), }, { name: "Invalid value returns error", - msg: types.NewMsgAddPostReaction(id, "like", testOwner), + msg: msgs.NewMsgAddPostReaction(id, "like", testOwner), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Reaction value must be an emoji or an emoji shortcode.If a shortcode is provided, it must only contains a-z, 0-9, - and _ and must start and end with a :"), }, { name: "Valid message returns no error (with shortcode)", - msg: types.NewMsgAddPostReaction(id, ":like:", testOwner), + msg: msgs.NewMsgAddPostReaction(id, ":like:", testOwner), error: nil, }, { name: "Valid message returns no error (with emoji)", - msg: types.NewMsgAddPostReaction(id, "🤩", testOwner), + msg: msgs.NewMsgAddPostReaction(id, "🤩", testOwner), error: nil, }, } @@ -98,7 +99,7 @@ func TestMsgAddPostReaction_GetSigners(t *testing.T) { // --- MsgRemovePostReaction // ---------------------- -var msgUnlikePost = types.NewMsgRemovePostReaction(id, testOwner, "like") +var msgUnlikePost = msgs.NewMsgRemovePostReaction(id, testOwner, "like") func TestMsgRemovePostReaction_Route(t *testing.T) { actual := msgUnlikePost.Route() @@ -113,33 +114,33 @@ func TestMsgRemovePostReaction_Type(t *testing.T) { func TestMsgRemovePostReaction_ValidateBasic(t *testing.T) { tests := []struct { name string - msg types.MsgRemovePostReaction + msg msgs.MsgRemovePostReaction error error }{ { name: "Invalid post id returns error", - msg: types.NewMsgRemovePostReaction("", testOwner, ":+1:"), + msg: msgs.NewMsgRemovePostReaction("", testOwner, ":+1:"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid post id: "), }, { name: "Invalid user address: ", - msg: types.NewMsgRemovePostReaction(id, nil, ":like:"), + msg: msgs.NewMsgRemovePostReaction(id, nil, ":like:"), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, "Invalid user address: "), }, { name: "Blank value returns no error", - msg: types.NewMsgRemovePostReaction(id, testOwner, ""), + msg: msgs.NewMsgRemovePostReaction(id, testOwner, ""), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Reaction value must be an emoji or an emoji shortcode. "+ "If a shortcode is provided, it must only contains a-z, 0-9, - and _ and must start and end with a :"), }, { name: "Valid message returns no error (with shortcode)", - msg: types.NewMsgRemovePostReaction(id, testOwner, ":+1:"), + msg: msgs.NewMsgRemovePostReaction(id, testOwner, ":+1:"), error: nil, }, { name: "Valid message returns no error (with emoji)", - msg: types.NewMsgRemovePostReaction(id, testOwner, "🤩"), + msg: msgs.NewMsgRemovePostReaction(id, testOwner, "🤩"), error: nil, }, } diff --git a/x/posts/internal/types/msgs_test.go b/x/posts/internal/types/msgs/msgs_test.go similarity index 86% rename from x/posts/internal/types/msgs_test.go rename to x/posts/internal/types/msgs/msgs_test.go index 464ab5637c..3b30a006bf 100644 --- a/x/posts/internal/types/msgs_test.go +++ b/x/posts/internal/types/msgs/msgs_test.go @@ -1,4 +1,4 @@ -package types_test +package msgs_test import ( "testing" @@ -6,7 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/desmos-labs/desmos/x/posts/internal/types" + "github.com/desmos-labs/desmos/x/posts/internal/types/models" + "github.com/desmos-labs/desmos/x/posts/internal/types/msgs" "github.com/stretchr/testify/require" ) @@ -17,19 +18,19 @@ import ( var testOwner, _ = sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") var timeZone, _ = time.LoadLocation("UTC") var date = time.Date(2020, 1, 1, 12, 0, 0, 0, timeZone) -var pollData = types.NewPollData( +var pollData = models.NewPollData( "poll?", time.Date(2050, 1, 1, 15, 15, 00, 000, timeZone), - types.NewPollAnswers( - types.NewPollAnswer(types.AnswerID(1), "Yes"), - types.NewPollAnswer(types.AnswerID(2), "No"), + models.NewPollAnswers( + models.NewPollAnswer(models.AnswerID(1), "Yes"), + models.NewPollAnswer(models.AnswerID(2), "No"), ), true, false, true, ) -var id = types.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") -var msgCreatePost = types.NewMsgCreatePost( +var id = models.PostID("dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1") +var msgCreatePost = msgs.NewMsgCreatePost( "My new post", id, false, @@ -37,7 +38,7 @@ var msgCreatePost = types.NewMsgCreatePost( map[string]string{}, testOwner, date, - types.NewPostMedias(types.NewPostMedia("https://uri.com", "text/plain", nil)), + models.NewPostMedias(models.NewPostMedia("https://uri.com", "text/plain", nil)), &pollData, ) @@ -57,12 +58,12 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { tests := []struct { name string - msg types.MsgCreatePost + msg msgs.MsgCreatePost error error }{ { name: "Empty owner returns error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "Message", "", false, @@ -77,7 +78,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty message returns error if medias, poll data and message are empty", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "", "", false, @@ -92,7 +93,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Non-empty message returns no error if medias are empty", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "message", "", false, @@ -107,7 +108,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Non-empty message returns no error if medias aren't empty", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "message", "", false, @@ -122,7 +123,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty message returns no error if medias aren't empty", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "", "", false, @@ -137,7 +138,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty message returns no error if poll isn't empty", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "", "", false, @@ -152,7 +153,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Non-empty message returns no error if poll is empty", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "message", "", false, @@ -167,7 +168,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty subspace returns error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My message", "", false, @@ -182,7 +183,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Future creation date returns error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "future post", "", false, @@ -197,7 +198,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty URI in medias returns error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "future post", "", false, @@ -205,8 +206,8 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { map[string]string{}, creator, date, - types.PostMedias{ - types.PostMedia{ + models.PostMedias{ + models.PostMedia{ URI: "", MimeType: "text/plain", }, @@ -217,7 +218,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Invalid URI in message returns error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My message", "", false, @@ -225,7 +226,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { map[string]string{}, creator, date, - types.PostMedias{types.PostMedia{ + models.PostMedias{models.PostMedia{ URI: "invalid-uri", MimeType: "text/plain", }}, @@ -235,7 +236,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Empty mime type in message returns error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My message", "", false, @@ -243,8 +244,8 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { map[string]string{}, creator, date, - types.PostMedias{ - types.PostMedia{ + models.PostMedias{ + models.PostMedia{ URI: "https://example.com", MimeType: "", }, @@ -255,7 +256,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Valid message does not return any error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "Message", "", false, @@ -271,8 +272,8 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, creator, date, - types.PostMedias{ - types.PostMedia{ + models.PostMedias{ + models.PostMedia{ URI: "https://uri.com", MimeType: "text/plain", }, @@ -283,7 +284,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with empty medias non-empty poll and non-empty message returns no error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My message", "", false, @@ -298,7 +299,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with non-empty medias, non-empty poll and non-empty message returns no error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My message", "", false, @@ -313,7 +314,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with non-empty medias, non empty poll and empty message returns no error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "", "", false, @@ -328,7 +329,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with empty medias, non empty poll and empty message returns no error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "", "", false, @@ -343,7 +344,7 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { }, { name: "Message with empty poll, non-empty medias and non empty message returns no error", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My message", "", false, @@ -351,8 +352,8 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { map[string]string{}, creator, date, - types.PostMedias{ - types.PostMedia{ + models.PostMedias{ + models.PostMedia{ URI: "https://example.com", MimeType: "text/plain", }, @@ -383,12 +384,12 @@ func TestMsgCreatePost_ValidateBasic(t *testing.T) { func TestMsgCreatePost_GetSignBytes(t *testing.T) { tests := []struct { name string - msg types.MsgCreatePost + msg msgs.MsgCreatePost expSignJSON string }{ { name: "Message with non-empty external reference", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My new post", id, false, @@ -396,8 +397,8 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { map[string]string{"field": "value"}, testOwner, date, - types.PostMedias{ - types.PostMedia{ + models.PostMedias{ + models.PostMedia{ URI: "https://uri.com", MimeType: "text/plain", }, @@ -408,7 +409,7 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { }, { name: "Message with empty external reference", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My post", id, false, @@ -416,8 +417,8 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { map[string]string{}, testOwner, date, - types.PostMedias{ - types.PostMedia{ + models.PostMedias{ + models.PostMedia{ URI: "https://uri.com", MimeType: "text/plain", }, @@ -428,7 +429,7 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { }, { name: "Message with empty medias", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My Post without medias", id, false, @@ -436,14 +437,14 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { map[string]string{}, testOwner, date, - types.PostMedias{}, + models.PostMedias{}, msgCreatePost.PollData, ), expSignJSON: `{"type":"desmos/MsgCreatePost","value":{"allows_comments":false,"creation_date":"2020-01-01T12:00:00Z","creator":"cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns","message":"My Post without medias","parent_id":"dd065b70feb810a8c6f535cf670fe6e3534085221fa964ed2660ebca93f910d1","poll_data":{"allows_answer_edits":true,"allows_multiple_answers":false,"end_date":"2050-01-01T15:15:00Z","is_open":true,"provided_answers":[{"id":"1","text":"Yes"},{"id":"2","text":"No"}],"question":"poll?"},"subspace":"4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e"}}`, }, { name: "Message with empty poll data", - msg: types.NewMsgCreatePost( + msg: msgs.NewMsgCreatePost( "My Post without medias", id, false, @@ -451,8 +452,8 @@ func TestMsgCreatePost_GetSignBytes(t *testing.T) { map[string]string{}, testOwner, date, - types.PostMedias{ - types.PostMedia{ + models.PostMedias{ + models.PostMedia{ URI: "https://uri.com", MimeType: "text/plain", }, @@ -482,7 +483,7 @@ func TestMsgCreatePost_GetSigners(t *testing.T) { // ---------------------- var editDate = time.Date(2010, 1, 1, 15, 0, 0, 0, timeZone) -var msgEditPost = types.NewMsgEditPost(id, "Edited post message", testOwner, editDate) +var msgEditPost = msgs.NewMsgEditPost(id, "Edited post message", testOwner, editDate) func TestMsgEditPost_Route(t *testing.T) { actual := msgEditPost.Route() @@ -497,42 +498,42 @@ func TestMsgEditPost_Type(t *testing.T) { func TestMsgEditPost_ValidateBasic(t *testing.T) { tests := []struct { name string - msg types.MsgEditPost + msg msgs.MsgEditPost error error }{ { name: "Invalid post id returns error", - msg: types.NewMsgEditPost("", "Edited post message", testOwner, editDate), + msg: msgs.NewMsgEditPost("", "Edited post message", testOwner, editDate), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid post id: "), }, { name: "Invalid editor returns error", - msg: types.NewMsgEditPost(id, "Edited post message", nil, editDate), + msg: msgs.NewMsgEditPost(id, "Edited post message", nil, editDate), error: sdkerrors.Wrap(sdkerrors.ErrInvalidAddress, "Invalid editor address: "), }, { name: "Blank message returns error", - msg: types.NewMsgEditPost(id, " ", testOwner, editDate), + msg: msgs.NewMsgEditPost(id, " ", testOwner, editDate), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post message cannot be empty nor blank"), }, { name: "Empty message returns error", - msg: types.NewMsgEditPost(id, "", testOwner, editDate), + msg: msgs.NewMsgEditPost(id, "", testOwner, editDate), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Post message cannot be empty nor blank"), }, { name: "Empty edit date returns error", - msg: types.NewMsgEditPost(id, "My new message", testOwner, time.Time{}), + msg: msgs.NewMsgEditPost(id, "My new message", testOwner, time.Time{}), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Invalid edit date"), }, { name: "Future edit date returns error", - msg: types.NewMsgEditPost(id, "My new message", testOwner, time.Now().Add(time.Hour)), + msg: msgs.NewMsgEditPost(id, "My new message", testOwner, time.Now().Add(time.Hour)), error: sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, "Edit date cannot be in the future"), }, { name: "Valid message returns no error", - msg: types.NewMsgEditPost(id, "Edited post message", testOwner, editDate), + msg: msgs.NewMsgEditPost(id, "Edited post message", testOwner, editDate), error: nil, }, } diff --git a/x/posts/legacy/v0.6.0/types.go b/x/posts/legacy/v0.6.0/types.go index 5a17fc5d1e..a008be41df 100644 --- a/x/posts/legacy/v0.6.0/types.go +++ b/x/posts/legacy/v0.6.0/types.go @@ -5,6 +5,10 @@ import ( v040posts "github.com/desmos-labs/desmos/x/posts/legacy/v0.4.0" ) +const ( + ModuleName = "posts" +) + // GenesisState contains the data of a v0.6.0 genesis state for the posts module type GenesisState struct { Posts []v040posts.Post `json:"posts"` diff --git a/x/posts/legacy/v0.8.0/migrate.go b/x/posts/legacy/v0.8.0/migrate.go new file mode 100644 index 0000000000..14f63227fa --- /dev/null +++ b/x/posts/legacy/v0.8.0/migrate.go @@ -0,0 +1,23 @@ +package v060 + +import ( + sdk "github.com/cosmos/cosmos-sdk/types" + v060posts "github.com/desmos-labs/desmos/x/posts/legacy/v0.6.0" +) + +// Migrate accepts exported genesis state from v0.6.0 and migrates it to v0.8.0 +// genesis state. This migration replace all the old post reactions structure +// with the new one that includes shortcodes. +func Migrate(oldGenState v060posts.GenesisState) GenesisState { + return GenesisState{ + Posts: oldGenState.Posts, + UsersPollAnswers: oldGenState.UsersPollAnswers, + PostReactions: oldGenState.PostReactions, + RegisteredReactions: oldGenState.RegisteredReactions, + Params: Params{ + MaxPostMessageLength: sdk.NewInt(500), + MaxOptionalDataFieldsNumber: sdk.NewInt(10), + MaxOptionalDataFieldValueLength: sdk.NewInt(200), + }, + } +} diff --git a/x/posts/legacy/v0.8.0/migrate_test.go b/x/posts/legacy/v0.8.0/migrate_test.go new file mode 100644 index 0000000000..eaadabba3e --- /dev/null +++ b/x/posts/legacy/v0.8.0/migrate_test.go @@ -0,0 +1,206 @@ +package v060_test + +import ( + "encoding/json" + "io/ioutil" + "testing" + "time" + + sdk "github.com/cosmos/cosmos-sdk/types" + emoji "github.com/desmos-labs/Go-Emoji-Utils" + v040 "github.com/desmos-labs/desmos/x/posts/legacy/v0.4.0" + v060 "github.com/desmos-labs/desmos/x/posts/legacy/v0.6.0" + v080 "github.com/desmos-labs/desmos/x/posts/legacy/v0.8.0" + "github.com/stretchr/testify/require" +) + +func TestMigrate(t *testing.T) { + parentPostCreator, err := sdk.AccAddressFromBech32("cosmos1y54exmx84cqtasvjnskf9f63djuuj68p7hqf47") + require.NoError(t, err) + + postCreator, err := sdk.AccAddressFromBech32("cosmos1cjf97gpzwmaf30pzvaargfgr884mpp5ak8f7ns") + require.NoError(t, err) + + parentCreationTime := time.Now().UTC() + postCreationTime := parentCreationTime.Add(time.Hour) + + subspace := "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + + parentID := v040.ComputeID(parentCreationTime, parentPostCreator, subspace) + postID := v040.ComputeID(postCreationTime, postCreator, subspace) + + v060GenState := v060.GenesisState{ + Posts: []v040.Post{ + { + PostID: parentID, + ParentID: "", + Message: "Message", + AllowsComments: true, + Subspace: "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + OptionalData: map[string]string{}, + Created: parentCreationTime, + LastEdited: time.Time{}, + Creator: parentPostCreator, + Medias: []v040.PostMedia{{URI: "https://uri.com", MimeType: "text/plain"}}, + }, + { + PostID: postID, + ParentID: parentID, + Message: "Message", + AllowsComments: true, + Subspace: "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + OptionalData: map[string]string{}, + Created: postCreationTime, + LastEdited: time.Time{}, + Creator: postCreator, + Medias: []v040.PostMedia{{URI: "https://uri.com", MimeType: "text/plain"}}, + }, + }, + UsersPollAnswers: map[string][]v040.UserAnswer{string(postID): {v040.UserAnswer{ + Answers: []v040.AnswerID{1, 2}, + User: postCreator, + }}}, + PostReactions: map[string][]v060.PostReaction{string(postID): { + v060.PostReaction{ + Owner: postCreator, + Shortcode: ":fire:", + Value: "🔥", + }, + v060.PostReaction{ + Owner: postCreator, + Shortcode: ":my_house:", + Value: "https://myHouse.png", + }, + }}, + RegisteredReactions: []v040.Reaction{ + { + ShortCode: ":my_house:", + Value: "https://myHouse.png", + Subspace: subspace, + Creator: postCreator, + }, + }, + } + + expected := v060.GenesisState{ + Posts: []v040.Post{ + { + PostID: parentID, + ParentID: "", + Message: "Message", + AllowsComments: true, + Subspace: "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + OptionalData: map[string]string{}, + Created: parentCreationTime, + LastEdited: time.Time{}, + Creator: parentPostCreator, + Medias: []v040.PostMedia{{URI: "https://uri.com", MimeType: "text/plain"}}, + }, + { + PostID: postID, + ParentID: parentID, + Message: "Message", + AllowsComments: true, + Subspace: "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + OptionalData: map[string]string{}, + Created: postCreationTime, + LastEdited: time.Time{}, + Creator: postCreator, + Medias: []v040.PostMedia{{URI: "https://uri.com", MimeType: "text/plain"}}, + }, + }, + UsersPollAnswers: map[string][]v040.UserAnswer{string(postID): {v040.UserAnswer{ + Answers: []v040.AnswerID{1, 2}, + User: postCreator, + }}}, + PostReactions: map[string][]v060.PostReaction{string(postID): { + v060.PostReaction{ + Owner: postCreator, + Shortcode: ":fire:", + Value: "🔥", + }, + v060.PostReaction{ + Owner: postCreator, + Shortcode: ":my_house:", + Value: "https://myHouse.png", + }, + }}, + RegisteredReactions: []v040.Reaction{ + { + ShortCode: ":my_house:", + Value: "https://myHouse.png", + Subspace: subspace, + Creator: postCreator, + }, + }, + } + + migrated := v080.Migrate(v060GenState) + + // Check for posts + require.Len(t, migrated.Posts, len(expected.Posts)) + for index, post := range migrated.Posts { + require.Equal(t, expected.Posts[index].PostID, post.PostID) + require.Equal(t, expected.Posts[index].ParentID, post.ParentID) + } + + // Check for users poll answers + require.Len(t, migrated.UsersPollAnswers, len(expected.UsersPollAnswers)) + for key := range expected.UsersPollAnswers { + require.Equal(t, expected.UsersPollAnswers[key], migrated.UsersPollAnswers[key]) + } + + // Check for posts reactions + require.Len(t, migrated.PostReactions, len(expected.PostReactions)) + for key := range expected.PostReactions { + require.Equal(t, expected.PostReactions[key], migrated.PostReactions[key]) + } + + require.Len(t, migrated.RegisteredReactions, len(expected.RegisteredReactions)) + for index, reaction := range migrated.RegisteredReactions { + require.Equal(t, expected.RegisteredReactions[index], reaction) + } + +} + +func TestMigrate060(t *testing.T) { + config := sdk.GetConfig() + config.SetBech32PrefixForAccount("desmos", "desmos"+sdk.PrefixPublic) + config.Seal() + + content, err := ioutil.ReadFile("v060state.json") + require.NoError(t, err) + + var v060state v060.GenesisState + err = json.Unmarshal(content, &v060state) + require.NoError(t, err) + + v080state := v080.Migrate(v060state) + for _, reaction := range v080state.RegisteredReactions { + // Make sure each reaction shortcode does not represent an emoji + _, err := emoji.LookupEmojiByCode(reaction.ShortCode) + require.Error(t, err) + + // Make sure no reaction value is an emoji + _, err = emoji.LookupEmoji(reaction.Value) + require.Error(t, err) + } + + // Make sure the posts are all the same + require.Equal(t, len(v080state.Posts), len(v060state.Posts)) + for index, post := range v080state.Posts { + require.Equal(t, post, v060state.Posts[index]) + } + + // Make sure the reactions are all the same + require.Equal(t, len(v080state.PostReactions), len(v060state.PostReactions)) + for index, postReactions := range v080state.PostReactions { + require.Contains(t, postReactions, v060state.PostReactions[index]) + } + + // Make sure the poll answers are all the same + require.Equal(t, len(v080state.UsersPollAnswers), len(v060state.UsersPollAnswers)) + for index, answer := range v080state.UsersPollAnswers { + require.Equal(t, answer, v060state.UsersPollAnswers[index]) + } +} diff --git a/x/posts/legacy/v0.8.0/types.go b/x/posts/legacy/v0.8.0/types.go new file mode 100644 index 0000000000..8c7f90e814 --- /dev/null +++ b/x/posts/legacy/v0.8.0/types.go @@ -0,0 +1,22 @@ +package v060 + +import ( + sdk "github.com/cosmos/cosmos-sdk/types" + v040posts "github.com/desmos-labs/desmos/x/posts/legacy/v0.4.0" + v060 "github.com/desmos-labs/desmos/x/posts/legacy/v0.6.0" +) + +// GenesisState contains the data of a v0.6.0 genesis state for the posts module +type GenesisState struct { + Posts []v040posts.Post `json:"posts"` + UsersPollAnswers map[string][]v040posts.UserAnswer `json:"users_poll_answers"` + PostReactions map[string][]v060.PostReaction `json:"post_reactions"` + RegisteredReactions []v040posts.Reaction `json:"registered_reactions"` + Params Params `json:"params"` +} + +type Params struct { + MaxPostMessageLength sdk.Int `json:"max_post_message_length" yaml:"max_post_message_length"` + MaxOptionalDataFieldsNumber sdk.Int `json:"max_optional_data_fields_number" yaml:"max_optional_data_fields_number"` + MaxOptionalDataFieldValueLength sdk.Int `json:"max_optional_data_field_value_length" yaml:"max_optional_data_field_value_length"` +} diff --git a/x/posts/legacy/v0.8.0/v060state.json b/x/posts/legacy/v0.8.0/v060state.json new file mode 100644 index 0000000000..d55e3db369 --- /dev/null +++ b/x/posts/legacy/v0.8.0/v060state.json @@ -0,0 +1,79424 @@ +{ + "app_hash": "", + "app_state": { + "auth": { + "accounts": [ + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 118, + "address": "desmos1qpg3hsvmlu8pz866tspn64nmat6sgrwa982q6m", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 1, + "address": "desmos1qrnfe2emyc5p8dvg3luaeta973lvdklk5auhk6", + "coins": [ + { + "amount": "990000000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 107, + "address": "desmos1q8df8fp3tpx6gxjlhsc0vzqaxet6wa2pmxrhzh", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2jtzwrnlhqv0666hdurl92le7rsxhzxy75fqprk4ttgmr49m9x9kj28p2q", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 117, + "address": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq233mee3e5llexmh8x4reppfuf2uuw20tav0knupm3guz7u3lcuh26cah0d", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 167, + "address": "desmos1qd6j5j8n9ugmpt2sdfkzzwpzcexyal79302ywl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 297, + "address": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq26ue20l94jn67djedrzdx4fxn3nyp4cg0ljn9h724z6ygpar9zw5r37ww8", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 29, + "address": "desmos1qjrty4rpwlrgupp2l075a4demz353mx8v96rvh", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 46, + "address": "desmos1q4dtkkale0awq8arg873qpkzj54hv7g7wk80qx", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 20, + "address": "desmos1qavm87uz055lk790eydtcxm4g20cnhc3pvym0m", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 28, + "address": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "coins": [ + { + "amount": "19988337", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqwecrtz48pcczj0efa74v30l6y25t6xr8ng566kd9yxe4l8s3ec7j2nmh50", + "sequence": 14 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 233, + "address": "desmos1pql9krde2ruwvjmay5yfy4cvgxaudp5g73k2ty", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 201, + "address": "desmos1pp9x6cppe8ykytk2ecvnup3pak56esh64ypyvd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqg0un6pkmkxqywzs5vnlym788ya8pgcl5xeucvvvwwlm2xhg573vvfgjz7s", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 285, + "address": "desmos1prwrsrrt83swq560h0czyrg3f2pusz9s3palx9", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 268, + "address": "desmos1p8353z7nmdl2332arylfxg6rly9ln2mp963su9", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdjawrf4k7nvq7ty63uexqc25tcm7aagpmpd7vn0fmnn60tm6ug728ee8rt", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 190, + "address": "desmos1pspyztfstf97lc8fm9g84avvq2hzsv5ypfujkx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 249, + "address": "desmos1p5dw0cw0rxskpda5asns9a8eg0zchr0lj80e2w", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 160, + "address": "desmos1pkukquayavsapulkywkx6gmnflg574qh48zcsh", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 49, + "address": "desmos1puh5url3u062vaeryw365jzzx8uuajdwjqrtyk", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 23, + "address": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "coins": [ + { + "amount": "29997592", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqvxmta86ynx0wpqrs6f3l246hccpdx6300var4vwk0v37vkegyxq56wp58n", + "sequence": 29 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 38, + "address": "desmos1patn4vz7dcvj7ae5t7jje0red4jrm66w0tku8d", + "coins": [ + { + "amount": "2000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 171, + "address": "desmos1zrwatjervd83kx4rwcecz4srf7mmensmxzchmv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 110, + "address": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2zwdvd8kfmytkc7ktsdhkza34cfccclscp82sxajd44t6k7fuv8u7mv59r", + "sequence": 17 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 53, + "address": "desmos1zy73ag9zde9u7apa49gtw9yud9llap4f55jn7q", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 70, + "address": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 125, + "address": "desmos1zfvn77dgpratn4v6nxw87d4l4xn8dd6uycjxwh", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 12, + "address": "desmos1z3dn3lj8sqm85jk65hc4nmug9uqjsfzypcqe5l", + "coins": [ + { + "amount": "1001", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 222, + "address": "desmos1z3sr49arwjltxuq9r5t4ykezphmjks3dnzucmf", + "coins": [ + { + "amount": "492272", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0p72wr02r5rasgege9prfzjcm4p0pachg5a2l99re9y77kpzglsj0agl7g", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 184, + "address": "desmos1znma6pnv2mw3etcsx38hncuseelwnhjzywunnj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 25, + "address": "desmos1zk3ms4n0x8h98axwm4tflkrnn4mmy8u28nnmfd", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 229, + "address": "desmos1zetvvc8rwkxh4jhh554esds9cwtxvm54l2w8su", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 99, + "address": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "coins": [ + { + "amount": "12495081", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdvwmhk5l692xlc8j3yravhhfr6jmjgg3qqwf5urtwtecltgm3zscnhdwdc", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 41, + "address": "desmos1rt0sdmma2mhcgq463s2m5myf5w2mcks3cr4xjn", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 270, + "address": "desmos1rw70l6kmzk0g9xw0kkgtsmwd9qx4lvj0rrl7d8", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 164, + "address": "desmos1rlf9h6zx8rwhz2nryljahkl3y9jh5u7sdp54gd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 98, + "address": "desmos1yqe66ky0v28wprdkxucdtehentypn3svyhfde5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 106, + "address": "desmos1yyf428wtf75skphxmf5pyadhrnjywq3c73wya0", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 146, + "address": "desmos1y9767dew8mk3g5gf2dvg86q6crqu0pwuec07nd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 79, + "address": "desmos1yfj36n3exmlxepsy9tyh04cf0ka0w6p5qcs30q", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 204, + "address": "desmos1y49afqzqwtw7w5wta6jwshdlfsxm52nc4zsgcn", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 56, + "address": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "coins": [ + { + "amount": "4000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwjhklftf29480yzv4qf9pyul535cqljyvypwkqnk0jpfnglusmssn6tvuy", + "sequence": 10 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 247, + "address": "desmos1yc7y360wxehk3zaulrkdxslzjnvuu9kdxsve5w", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 148, + "address": "desmos1ye7c390s57mve8puv7q3pv50va86he27p74lmj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 137, + "address": "desmos1y6afr4cfvrmf0ws076g7yh5vdxswej4ahcvdl8", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtsrtkwg2ttdfautyakc8fjadc4js3d74hdhee38vwdkgzthed57sh5asgn", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 145, + "address": "desmos19zctr7jlmdrj9hymw6633mnqlf4pw9uxqalmdw", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwxmd7kr9tzudtpe7q6lhmcyzm8g2332vepsnu4tze9sd67nns2wqu95kp5", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 245, + "address": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2kf8t85d88qfkta4hn4p6yzy2dpnqz6h2577ju04ceh37hvnqgjgc527qd", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 227, + "address": "desmos19s84exh39f3g32d0c5xj07vdptfrjn0lhxkknn", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 258, + "address": "desmos19scms3cq0572hcahf2jve7t7v28rnhkv4z389f", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 173, + "address": "desmos19nfvk5fu082rcss6emg0zsppy2ec9dkyea4f83", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 96, + "address": "desmos19c6gsqqjt0dgrkfnv50nxxv250jwcx8rx3ug25", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 170, + "address": "desmos19m7awuk988tkadyr4el9tn4vlt77w4wryrst6c", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqw3r34mxt22lzkd3a2e55hvy52h2d47rwhg5x8j7ycftf972g6cmxn2we5q", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 17, + "address": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "coins": [ + { + "amount": "17995862", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqgnkvgj4s2hfus6hm55tgx4wgntnhezwwx99pset5r5g85myd3rsxpr2rh5", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 192, + "address": "desmos197cmxuyr94uqy0r2vk47tu677ala8hn02pdt9l", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2n7fh6kpfujul3jp3ugz3kwkhyc7c2vwj6qm4rlp7r536nnvfwz2kn97h2", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 44, + "address": "desmos19lt9fwhrlmmkwjkpcmecxeen8lhag555xhfyg5", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 280, + "address": "desmos19lcvzq73s3fr9uwwwlu3qjsfsqjavqawss57ce", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0cjrwa4pgpwa8ppdmvtgj08nne0ra86z2kkzwq6u2apy3kxy3hnz8xhumj", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 101, + "address": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqvl3e9xasqk4cjnrn0w9ha5kxfzleu6n656u9cvc2zmvhykl9ak05wa307r", + "sequence": 83 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 206, + "address": "desmos1x8820w7ttkqn9q38p4l8fxzl57r2hyjf24xefw", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 75, + "address": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "coins": [], + "public_key": "desmospub1addwnpepqv5mtkdessth8fl66p0kqezfrzc5p6u98l5k9yrkfgd4fkg8vfduqaz5692", + "sequence": 16 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 103, + "address": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 14 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 271, + "address": "desmos1xvqfm3n8mvcn0u9zm9g69ffqj93ymds2dtsgqy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 200, + "address": "desmos1x05l6wahfuvqph0hkumpy9wlxyvpnhl98twsjm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 207, + "address": "desmos1xslhskzxpgcg8eq450mf3pfs3dcsvgvp63u83k", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 276, + "address": "desmos1x5x7ry4k2tm8twy9dfcm3sp570hg3zkllzw4z6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 290, + "address": "desmos1xc49kw9mqcclzz626wvyh3lut92pk4masuhtng", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 261, + "address": "desmos1xe5dz04ndq29dryuz0x2g70mrjmj0vas20qvda", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 150, + "address": "desmos1xmwc5xenhrpn7x0q2h9a7xzgn22lt5ytrhdpkf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 248, + "address": "desmos1x7s80gmc6ymdj67f25sgafyz6mgd7u2easxenx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 34, + "address": "desmos1xlkg00kqf37k0uspljg4pamjdt6yjkxdzvjpdu", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 84, + "address": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "coins": [ + { + "amount": "16897014", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqf703wva9rvp6s9rq55e3jq7nl5s7nu4yy7fusdd9gdsv4fh5rpyxtm36fl", + "sequence": 42 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 149, + "address": "desmos18rwvcky0jt88u7lw6tkv4jhh0jahh06p74duzp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2skaqj2ag2sy20f0kpwrn2wtsa9u9n9t3rlsay7ej2ktdp967mrzxgk6y4", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 68, + "address": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "coins": [ + { + "amount": "8774596", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgtxm50k2v3lmmzu4y5n38ra38zdh30mrxdvhupm8n4m9sejhe6gwkx0mrj", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 253, + "address": "desmos18jfhfuws0hwg827s4ukh9hw86mdugrjypj24zk", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 59, + "address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "coins": [ + { + "amount": "10001", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2cs2ygdmxcf9ztjz2r2daujqn46t3w0xt9waxd4senvt5wrf857wjp2jt3", + "sequence": 10 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 15, + "address": "desmos1gpx0595wkz8shxfnl8qj0m9xlqfdsslykuf3g3", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 87, + "address": "desmos1gravcjq3t98upzlf2rn74nzml5262ln4y2dlfh", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 302, + "address": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "coins": [ + { + "amount": "496076", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtq3nku6hf62vrafdefwy0h3gew5yke0s2qum6nxx8mvqkegt08njlmj0vf", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 202, + "address": "desmos1g35v6eu67t069e4vfrfhm23lv505fu35gdturp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 254, + "address": "desmos1g4kc5llwyq3y423fa0gcy64rz4h58e36k4lc8e", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqfwn2pc44mk5sjel6tsqaunsg8vude6u9uhmyjmyfgz8vre96t99kjczw0h", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 235, + "address": "desmos1gk3kewu5x2ljldzujm0xxsg3nwtqq4ps3ejzrn", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 183, + "address": "desmos1gee3llf5zs0ytln9lduc34m2lcnz5eqpq8wwl5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 11, + "address": "desmos1gmu4uevcvwfcuu43yp27gcv4ngxuh9sxfpv3er", + "coins": [ + { + "amount": "9990", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 262, + "address": "desmos1gattvm0n45ymk28t70xtnmtjyw6cgwr9pzxxfe", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 61, + "address": "desmos1g7mzep5lfempedgcfrytrausnt8d8w889muwmm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 128, + "address": "desmos1fqyt7zs5s65quung3y2amp5j8arkd9s6p6qxmz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 281, + "address": "desmos1fg43gttcm8l5c6jptn7stnjnnj0hl5xqc7p0fz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq26md9djw4qj08cqwgzhh95ledtueuxuy43mcaag6zu5p4r6w47wxnqxtqx", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 210, + "address": "desmos1f2mexglh3kta6k0n63cka4vw50vy0443jsczz2", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 244, + "address": "desmos1ftp2whf7jc7g455c55saxx09pche59yhvd5dct", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 92, + "address": "desmos1ft37z3kv89mtc2qzyudvmhkakeyje6kuwda29y", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 269, + "address": "desmos1fd2mdd4jk7hqjdh7sefsraq8shfj5gasdnvp6c", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 220, + "address": "desmos1f0wmy6srv7hy2p2236qk3g404y0p3k5kk2wag3", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 82, + "address": "desmos1fs39fdhkus69jskyv5s6xsk5wzrtyutpv67ma6", + "coins": [ + { + "amount": "7897020", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 153, + "address": "desmos1fjjvue580y7ux29hv8qg5kfkf5w26jzsh0gm2g", + "coins": [ + { + "amount": "900000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgrd4md8s8tzswu9kxw5p6mgg6zpvj7juewt9aqmr3dqycph92dzs5x6pf8", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 5, + "address": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "coins": [ + { + "amount": "2000000000000", + "denom": "udaric" + }, + { + "amount": "4", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepq0s4mtdke3j70mk6ytae86l8wvxcf2lyzzzjssmfs950wp7n5ppcxetrfqp", + "sequence": 138 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 259, + "address": "desmos1fe6f2894zkz5x2l9k2z57latts9l06puf5dnth", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 283, + "address": "desmos1fmvs85d0v7ym2sfmxwnsvmhs3pxc57frdqexqg", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/ModuleAccount", + "value": { + "account_number": 7, + "address": "desmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu3prylw0", + "coins": [ + { + "amount": "40642680463", + "denom": "udaric" + } + ], + "name": "bonded_tokens_pool", + "permissions": [ + "burner", + "staking" + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 266, + "address": "desmos12qrdk3d34j3p5wmjhmctwy4szwsknj5c0pkm7z", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 205, + "address": "desmos12pxw3f97k2sx9jl2rcr2ssr9q23k6lc295fnlv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 147, + "address": "desmos12rg8wz0ykvtgx459v5dn8d04g3ew79nevpz6tt", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 199, + "address": "desmos12xtz20lgfx572tn2g8yluaf89nx7kt9ru3t0sr", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 140, + "address": "desmos12v62d963xs2sqfugdtrg4a8myekvj3sf473cfv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 211, + "address": "desmos120jlm2525k89ya3w33djlmz673qgspw367rvue", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 157, + "address": "desmos12hy7z5w92xdzsw2ecyzl5gqsk9hxxnpxyzt8e6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 156, + "address": "desmos12uxt4lullu4w20j28h3kahyrdwz366nv042pps", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 295, + "address": "desmos12lqdev5pkrxgn6p3emvnm2ta026hkmfu3pwehd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/ModuleAccount", + "value": { + "account_number": 8, + "address": "desmos1tygms3xhhs3yv487phx3dw4a95jn7t7l4rcwcm", + "coins": [ + { + "amount": "177950020", + "denom": "udaric" + } + ], + "name": "not_bonded_tokens_pool", + "permissions": [ + "burner", + "staking" + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 102, + "address": "desmos1ty2qgrk0kvrtycmqcpngxt0af8hfwr6q8xfc6c", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 90, + "address": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "coins": [ + { + "amount": "42", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqv6u2t89mkmrxzyx9mfx6rc6fk3rxcwyf7kpayj49q7p2futdntl2ra68q7", + "sequence": 91 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 240, + "address": "desmos1t8qgy2pp4z4pp8yvsh7w82jkpvuq4k4sf8mxnr", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 81, + "address": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "coins": [ + { + "amount": "7997016", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 27, + "address": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepq26l4uvn65nkxkql085w2rg2tyudw99hjgjw6v5qxlcrac2e55a2u7srvpz", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 112, + "address": "desmos1tnwhmwda7r8xly9qg7hefcapyydsnsr46unqsq", + "coins": [ + { + "amount": "10999799", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtkql69aa9lfp8u9h93rrgqh6dhx9nkmh7jhnrxtael426sjcscpwy4w84j", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 89, + "address": "desmos1tk6322xz6w62xflfpqazgmp95df55k0j5mjxsc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 208, + "address": "desmos1tmk9q9zejvva3smw69szse6c68hshjlwyrdfc4", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 131, + "address": "desmos1t74p8wd0thcq6hcnczp9eezaudvrec60y8l4hm", + "coins": [ + { + "amount": "9897022", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 185, + "address": "desmos1vryq2u4zyyu8qzygw3jdy9wsm7y3nkz3u9ysxw", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 72, + "address": "desmos1v9q6q82aas3vknhngmeletvzhlhk5jqpy2t39a", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 251, + "address": "desmos1v5u2l78caeke3k0fpcs9l4gxxkx863ay4lpfd6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 226, + "address": "desmos1vhrxzycy6t4sjvfnewn2vjnusg0j6c2t8vsqvg", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 274, + "address": "desmos1vmze3xe0mr9swt2675kad6sdxz5qtnk7f9et0z", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 224, + "address": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqfnu8tgr8xqfyrml775jhzcxc6556p7s59sjelm7dfuwrxmq85p6xt5sjyu", + "sequence": 14 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 122, + "address": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqvgztcrxtt3fz368ycyzqxelme42rzs3wm4p43023dv7u2upr8rfvncweuj", + "sequence": 78 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 104, + "address": "desmos1var2mx84dzqjt8vvlycjadekexl2l2a39rx6ue", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 50, + "address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "coins": [ + { + "amount": "9999988", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqgmpgpgea72vdkqj5wt7xa3lzz9azhtlw2d9qadalyprlfhlucf0utk6wrz", + "sequence": 25 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 4, + "address": "desmos1dzn2s7l0wm9kekyazcnhapu8j95n90efmcmrad", + "coins": [ + { + "amount": "2096440000000", + "denom": "udaric" + }, + { + "amount": "79999899942995", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqv4c93kns3tx3cvq3lxdehe2fysql6s87lazv7qd4l2ut9t4vpga6zkp02k", + "sequence": 415 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 273, + "address": "desmos1ddrhe4lkak3ag3a3u56efmeumam48de67zjgr5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 304, + "address": "desmos1d4kmuml2m6254r2amhgd6p5xaqyy5fu0pcha72", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdqnsq4wlc5l4344l9wh5udzr5jmgddxyf2gc5fqy02hqhakp7ejgx8ed3s", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 139, + "address": "desmos1dmf80m0x2dzgf2fe642j2fjqy8palq3tfapvxa", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 194, + "address": "desmos1daqnr2hcugxsutpqyd24xu48090kh5gyjjjjun", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 108, + "address": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 63, + "address": "desmos1w8k4qyg395jkdf4lrrpkx47ncapvsszvhehdv5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 62, + "address": "desmos1w2yqy80jyxvkqe886l6rxkuaz27u8h8dk74hce", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 225, + "address": "desmos1w2ndtzm53uw8uzqdj6sf7kvje6wz6axlqwcvac", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 215, + "address": "desmos1wvucl65h5hu4fqlzmmw0ajstdz6p2m0hhlww44", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 143, + "address": "desmos1wsk63dkefrefxpq0k0fe27gx9lcz0gmg0pll7s", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0mus485zvswelsuy908za5gcg3mp09rsmhes99xes7wqw7udstmv97hlgj", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 241, + "address": "desmos1wn99nz4txccq4dugz76sg2rz7hfayahjqxc3mm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 187, + "address": "desmos1w4ng23sngez8ng3a0ee99cxgp3dtufk76udjqc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 284, + "address": "desmos1wc3m7490hl28sgl4pruu4s2jgjvlu9n4dhzf73", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwcaz62qtez9jck7gmuzrd6zsdpf4rtzzmsarezlje37j4da6wxfqhva84u", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 165, + "address": "desmos1weyktjnvw8dg2ng3kjqxz4dphchwz02xffulch", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 186, + "address": "desmos1wm638rlcz0ek9dvsxkkjtjd9xymwepvpt394h2", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 18, + "address": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "coins": [ + { + "amount": "2000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqdzk5tc6yvvhypwuzsxsyut02gdqn2vgdgq64d3ptuxrava59h3w70znexm", + "sequence": 8 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 109, + "address": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0aajqy5685fwqg8wz7s2kr0utlgfx9ctut7plc6w96fjadz3menqpjhvd0", + "sequence": 22 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 115, + "address": "desmos10gzach0ftnpfp7jazqvuhyxzdkjd5pnv5xuq5k", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 246, + "address": "desmos10j2hsltqutz8spuzrztk066lehjpaqvrwap6wz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 126, + "address": "desmos10nqm8rgd7cgqu3fy629z09qs4huhfln2wwr9kj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 2, + "address": "desmos105rr8u0mjqs9wntlmdgx4kskxqa9lv5k5wuaaz", + "coins": [ + { + "amount": "990000000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 168, + "address": "desmos10cshvvudqns5ukpeq4u6sl7x6r5npz3kz4m3s2", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 193, + "address": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "coins": [ + { + "amount": "2222223", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqt3wyyqtatm4uu7mfc7c803vwsz04m75v3vumsg6phsy9u3vkdphx2yahpx", + "sequence": 8 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 279, + "address": "desmos1spy5cd75xwlc3y7ddey6pavuwmn2tz57s78d07", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 236, + "address": "desmos1sg5qxyl8z2rqswst6xuw2vvptrk8mdjvsa8lcz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 133, + "address": "desmos1sfqflwwldc5jj40un5qgs926yqgxrup7u5wpxl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 239, + "address": "desmos1s2crr8ea3e8epfjnjq6yu8sagt7xz79xkwmg4x", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 198, + "address": "desmos1sv0t2z8nvjn4wrc02m8lcejvmnn8wwxsjdtr4f", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 212, + "address": "desmos1svjxha4pnx5grsqc4cfy7ycv54y4fle3vmxxwh", + "coins": [ + { + "amount": "18996066", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0r6ceq7a0eyk2puee92vem3y28s3r2vppsccqu6sp2p4kxvn8upqhc637u", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 24, + "address": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "coins": [ + { + "amount": "9956857", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqw4uv8x43mqrdw3tsu4np7kjv40kxfqymu247et2nqwjc2qhf4d6ysamkgr", + "sequence": 17 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 0, + "address": "desmos1snmetx9sfrmznr4z6d3lnwlyvwu36sgcpzzhlr", + "coins": [ + { + "amount": "890000000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 166, + "address": "desmos1sht43e32padfe5v4ewztf8up5ldh324mj7ta3j", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtnzu85fwaejmfgwn3q4d6qyhtr9yx74samjmwhvjgggpf224y0gwwxw75j", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 80, + "address": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "coins": [ + { + "amount": "1000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtly9gp6qgr63a58haw9d7822ycn4a0va9cmc2jvj4llxfrkqzkw546gt2x", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 255, + "address": "desmos1s7k6n697hsxwlncd6zv90kvgv7se7c4jpg03az", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 57, + "address": "desmos1397mvzsugyk8jakl2wehwysg96rfa6gv3chwuc", + "coins": [ + { + "amount": "11000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 121, + "address": "desmos13fndfmnd359up5r4qpdkgv8ewt8syjmxvmdha3", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 43, + "address": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "coins": [ + { + "amount": "996987", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 287, + "address": "desmos13v22hf6ly272p6pwz2a3tg30r67veghev2ung6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 195, + "address": "desmos130pugxlvua6u7ct6l7zk2pmt9mr7vsg44xapej", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 303, + "address": "desmos130euf9e3k4w826dgnyzx4aex3lupqee5kz5qgl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqd5380sqrw4y52468fhws5l9w68ccmfpvf5fq7huvllkk8p7mvukjmndmh9", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 237, + "address": "desmos13c0n4afksf74f9uxkkagwhwm2slky7kuy3qqnl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 260, + "address": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqg3qfxc0aa43rjlk3674mmtft8zjapdr6m2njaseffma4u64285qxuvtguq", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 203, + "address": "desmos1374y0xgxw9efuc52g9k2atc6quqhcq64s0sxrm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 123, + "address": "desmos1jqpqjcmqq0rq2dzgk6y9cljvx35jwqndkxr54z", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 16, + "address": "desmos1jz0hg7fvvs0024h0ac8e485xu6yryzhxhpvc0h", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 36, + "address": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 286, + "address": "desmos1jxsraq0pu8wdn293quckdg9auuzf5ewawfqnwp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 151, + "address": "desmos1jgkwvtg0mk8gcvays7gequu56wjm2e6xlg0v85", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqggu5safx0upze3h2vxw0hedlj4yqct7ldehuaryqf4nj7t0fgvc5f2m0jq", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 231, + "address": "desmos1jgedgsxyzwp82r5q8s44wnurtttwpcu67zz4h3", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/ModuleAccount", + "value": { + "account_number": 6, + "address": "desmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd8n8fv78", + "coins": [ + { + "amount": "431956", + "denom": "udaric" + } + ], + "name": "distribution", + "permissions": null, + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 242, + "address": "desmos1jd6ecxg8scrjknrx59z4wfk4azcgwqvak3vqu6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 159, + "address": "desmos1jw4rkfnxsykcw8wxa9k0u4g0r28xrttz0uey4r", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgrrezlful34zus7raajx3sdvzrm5uxc7f0v83fsnkctk289ps8nzlmpkw5", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 152, + "address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "coins": [ + { + "amount": "8995982", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqf8lfrqdt4hwh9lvn4xpq056rspamcm4suwgmvzts8hrw0wyxwucscf29j6", + "sequence": 10 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 292, + "address": "desmos1jaw0n623958u96sk9mncfu034wjdy86v200875", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 181, + "address": "desmos1jlaat3z62u2se3yakd8hrw6du3atp9uafjeaek", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 243, + "address": "desmos1nrjvd5asx600eph5ds7a3fjtq7lajp3xj0phna", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 76, + "address": "desmos1n9l3kaexp56pdcc8ttpw4sgy3j36w8acxay3g7", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 73, + "address": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "coins": [ + { + "amount": "10005167", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqfr8paglssr7j8s89je73xxkmc5wdrcnx4xp9ucrazsudvde94x9kkfnn4q", + "sequence": 22 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 299, + "address": "desmos1n2efj75wtxdtc2m6p6pjh33q8usudf0hps9eaz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 180, + "address": "desmos1n2m52yfq4hmk4e9p9493c28nt4fy4sqxvehxvf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2ntyfwgssj8cl88q7khlwxlulq38h30cwf8e0mlgz83akycuuzpcc0ueec", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 30, + "address": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "coins": [ + { + "amount": "8997498", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqwdageptdckcxeszxv0q9gp6t5zmzmc3x0kqg0rrvvge28clean2waujrme", + "sequence": 8 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 189, + "address": "desmos1njfhf0nxymykdccupyaph94xvah326vsn5j0ah", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 26, + "address": "desmos1nemxzd4x2djvm6vdt7w8l0ahy3fsr57pe65vxj", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 228, + "address": "desmos1nmjv37ddjcvu9t2st3f6zrjlp49w0945tstq3h", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 179, + "address": "desmos1nu88x7h22zghkwhnnglc2q0405rvq85tdrrfu5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 120, + "address": "desmos1n7n49hh5am5z0vl295glgj69f6vs76jvk6alvy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 119, + "address": "desmos1n74p7wa32l5rmhadssu6pucauw7k3af0je4mya", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 238, + "address": "desmos15rvcte5lpxdfrmafhr8fuu7lkuzpmjwr4327wv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 40, + "address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "coins": [ + { + "amount": "996984", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 116, + "address": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "coins": [ + { + "amount": "17123", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq27024uty4c73el2jhrsce4l0h7zt4wx0a4lq9nugy0rhuhjnqwpq5feul8", + "sequence": 22 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 176, + "address": "desmos152mk6fd3xhp2ks2rt3cp3smnc2jua93vuz0n60", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 263, + "address": "desmos15v4c0lzry83ttdqckus4pz6u3y66xv663j756x", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 272, + "address": "desmos15chpld9f6jpxm2y29f6mk3lgq6s25srg02xv5h", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 294, + "address": "desmos15uppa2theyy7467sq3edyr3yd7upg5juyths7v", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 138, + "address": "desmos15ux5mc98jlhsg30dzwwv06ftjs82uy4g3t99ru", + "coins": [ + { + "amount": "3996070", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0ecg279f4yc0k65yauffh6fnnvftklmgyr4nznrznm7apfucaw7zzjj8ja", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 69, + "address": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "coins": [ + { + "amount": "30000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwuk370w2g058c59sg0tfa35n7aexnl952nu56256nexa0frmjnucmw28uh", + "sequence": 82 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 291, + "address": "desmos14zyyrrjtl64f23u0e2fnt6d32wjg2kkntmzcj0", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 105, + "address": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgsqatkhx4na28jr2qe4cm9g4q2szgxjp9trpr3y9cxt33hzj54l7422uyn", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 161, + "address": "desmos14xec9tjsw4v5vzsx52dhrx7k873889pluymuzf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqww24schtz5jv973u3pml6m637mt3fhd4pmc6lt8gmwjs2yezgvlxj0trqx", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 32, + "address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "coins": [ + { + "amount": "996962", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqvnhwsgx97lm9vdcjuc6gvwpt2shdk9yn5lhg5lkzr4kq3cderz2cedqetq", + "sequence": 18 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 13, + "address": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "coins": [ + { + "amount": "7990000", + "denom": "udaric" + }, + { + "amount": "3010", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqv9zkuc9798hz5qfnjqpzm050y0s2ulhjjhlswa9nrjcgsh0ret9qslkckl", + "sequence": 77 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 71, + "address": "desmos14wtz9tuxu2ue7lmj3r8dvjajsvaryzttxr7dch", + "coins": [ + { + "amount": "18997020", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 154, + "address": "desmos14jhgygqh2nf8d2hqzp9pq7z7z7pu7expen3pvy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqvup503ju5r8yxj8x0tvfe3xdjy6wztszuujxlhgyfg52r8f6cfjutzk4sk", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 265, + "address": "desmos144ch7clf8yku6m2l69q936tq9c7l7nefgvrt4u", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 191, + "address": "desmos146kc07g39q8vzfv37hyecwpres07fczzsqxydz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 282, + "address": "desmos1kj95g6vqz2ww7hqlnp99lxa7rg8w7c54myrcmf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdsgdfmeyke80tuy0ug8zw7vgfq83qpjhknzm6a0gup6kpgded7tuf7w6ss", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 113, + "address": "desmos1k5wrdtmd5ngqx4pngwtlmlahv8yz7gk2lq4chs", + "coins": [ + { + "amount": "8989901", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtzqvhaja56fahcfct5pe3k0m3mj8kdangn6nra4l8g7ydsh7e5yx7ku2he", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 95, + "address": "desmos1kk5g3y82jf326p43d6gs9mup56y2evchnagmxw", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 162, + "address": "desmos1ke9fmwrs26putztkqhlve7dn2xjft6xf0acyq6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwzprm8jv2xq8fngllk5vv9jdxqn0udpxuaekhzjk5zz4makpkly2syftcc", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 221, + "address": "desmos1kayge86mzzerax3rqzcxpwvdjjg7h5emamy9r2", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 163, + "address": "desmos1hqw6qfrurvgtn9dnd8gxu992xuadc3u2e7y3e7", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 197, + "address": "desmos1hxrrlnyylk75qrjl34yxwfa8pruu6uj8j2pmtp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 132, + "address": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "coins": [ + { + "amount": "8997014", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 33, + "address": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "coins": [ + { + "amount": "9000000", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 144, + "address": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2y2rlmera6h6murxeveay7wvwr2eh3rx8kz54vu0k7snmw8y7fkg9l52gl", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 31, + "address": "desmos1h5zlrr6wudctmyh35yras8yaj9xjhlqc62xzc4", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 22, + "address": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqw8pwmk2sty6tv25ujd2vuswl73les20z5c28g375le2vahq424g2qekgzr", + "sequence": 11 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 296, + "address": "desmos1h4xrzvurfawxpele6g8zuz7s4g3m4c8umehqex", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 223, + "address": "desmos1hkqrf9qjkm9wdewa4rzqdgt8zd7u43ztzz5gwx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 134, + "address": "desmos1hcd2awl2xydfurs5y0d5pxr648lktr4lfs325r", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 130, + "address": "desmos1hm422rugs829rmvrge35dea05sce86z2qf0mrc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 177, + "address": "desmos1c8sget0d6zz7m7kl2mpnq4uv8erns8k5vhuku5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 93, + "address": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "coins": [ + { + "amount": "5997000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtfptp2rh9fwxq4c22fr9dysgvxlmdky888c683hk5kems3z4md25glev09", + "sequence": 12 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 97, + "address": "desmos1cf2y5687axm6pmrr9ferdt69znjpdfan0qjr0e", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 124, + "address": "desmos1ct8w7c9aah47mag3phrxt694kj4u54dllz3y35", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 58, + "address": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "coins": [], + "public_key": "desmospub1addwnpepq29nvsu3j4quwqdgrmp93trdt39jyz9mgaysxhphujtpu44evepw2rjjt0r", + "sequence": 23 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 214, + "address": "desmos1c3gfh2uf9y3hxra70tnpuy5g7jywgsmcn3x9cr", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 230, + "address": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0n5uj6p5fjv2v5ngruszs22c7ztd8699f0lvgclrgk9rdecevll5rpzsas", + "sequence": 11 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 250, + "address": "desmos1cc39tqqppr5cat4ytj5khychr9v3alpftpew7n", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 169, + "address": "desmos1cc53tdgtt9fu4tftck0wlz6th20kr8vqal2hxq", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 60, + "address": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "coins": [], + "public_key": "desmospub1addwnpepqf3cjvx47cfuxf60zvn64qewh8ml2trkn62upe6c9v06p8p5srjacjnt325", + "sequence": 60 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 135, + "address": "desmos1clskeeyaxxt3e64t0nl2pzypldex4hfd2yytdg", + "coins": [ + { + "amount": "10000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 45, + "address": "desmos1erh2eue5j88dpajapxmcyma88wxlh2rzgsa3c8", + "coins": [ + { + "amount": "2000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 100, + "address": "desmos1e8xaajgc0l5ftl5m5x390hg0enwjyd5pfyuf9g", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 300, + "address": "desmos1evev5xf7f83ft9ets9jgnkjayjr848tndp4edu", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 136, + "address": "desmos1e47r5lmctw07ywqqtxm35kurywwez7qdm4mlw4", + "coins": [ + { + "amount": "39996250", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqw0mrnzklq2hdh338jeek3sf32dq6zw2trazl2hqwk6raheumyrzjtdh4d6", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 37, + "address": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "coins": [ + { + "amount": "6050002", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqg5d9as5xamlpzr0eq9ytyzv7e3jszlay9aygylpcadctdtq6jfgsvwk59e", + "sequence": 21 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 277, + "address": "desmos1emmtdl0756p7sglkh39zy83akwwaat3t3ulmaz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 267, + "address": "desmos1eu5p3pzy45xsj2gr4cu5gtvlet5w5654g6d4fy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 127, + "address": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "coins": [ + { + "amount": "894061", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 172, + "address": "desmos16zshhkxds72r2ye82dac3082xwyu484kq8cxvp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 55, + "address": "desmos168yfpd2t8lvfxwu8lcu0ppuh3kl598g53xq7hk", + "coins": [ + { + "amount": "24976663", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwmup6ah0ncga6levv5wryekxdsyd8dc0ccdgtu4up0y3etdrd5nyd4ztsa", + "sequence": 15 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 54, + "address": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "coins": [ + { + "amount": "90000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqw7ljdh3ax5m30sphgts7mpznlvswq233x378d24aw99qp9j53nmwnhd3jh", + "sequence": 59 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 129, + "address": "desmos16t9r5jjqczc6xrr5hjahwsmu58e6ghfng58dau", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 21, + "address": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepq0wkzxl8rfvyffm6jxu85k90cf5dlxelnzgdda7xpsljmn7r079wj4n0zku", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 35, + "address": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "coins": [ + { + "amount": "18996981", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 77, + "address": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "coins": [], + "public_key": "desmospub1addwnpepqtchjd8phfp94sknydcxktahudjqeezzt9s75ms76lxsgtwcyk786tktnv6", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 19, + "address": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "coins": [ + { + "amount": "11000000", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqgefk2fznmr33w4v8yjsw8aa6epx2sjxafsvc9v2sl7xrmq70k7nkxzjjpf", + "sequence": 30 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 158, + "address": "desmos16w7cxqja5ll620stvf9e53xmzsxphhfymkp4xa", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 111, + "address": "desmos16narsgz9yhypm38unf48mp57y3z589d7zpcqwd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 275, + "address": "desmos16h0smzzh8m0sa0f4jg8gqp46r49xtrxt2zwegn", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 74, + "address": "desmos16cn6zae2ededcrj050nrvcfjxt5sxv4c44jhqk", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 301, + "address": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgmjdkwhk9e9us89nv82cqgwf6gct8nze46t6h2g584dh46kwnyqxfm6xtl", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 78, + "address": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "coins": [], + "public_key": "desmospub1addwnpepqdk8m52ty6x00zj4549sx3j62r4zfzkhqap5ve0y23zkxy20wkhqgdrw7tx", + "sequence": 23 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 218, + "address": "desmos167u5f8pr7xvec5n6hgyef7vyx9wp4h7a7m7sak", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 85, + "address": "desmos16l0xmm8teec49rk7q6wmrg95jqrpj87y7at7rc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 288, + "address": "desmos1mqz08hcywap4572p5k4kujrhgqqykg9mr73cnc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 14, + "address": "desmos1mzwqlssv36gca9dfs4s837lnp7hcczqgswc60k", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 174, + "address": "desmos1mzkrxy5pg2aljmur3a0z87ns0fnnjwuvnf585f", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 83, + "address": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "coins": [ + { + "amount": "9997018", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 188, + "address": "desmos1mxm3vt0ujr0v3nsj0pqtvns3jzg7qv97myhdaj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 289, + "address": "desmos1ms5u9h6zqqgl2n7wsy22vm0vxcn5yknpulkx8g", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqva7xc0u02z0s4vr9e0jy2zfh4xme4j8chqpwlqcvf400krl2hunkj63nn7", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 155, + "address": "desmos1ms4wts4txwaulmf4am23sjrqxt5mg4ga3vpnv0", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 39, + "address": "desmos1mmxgfg9045sqxt08mnkhk6653cj90hsz23raec", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 141, + "address": "desmos1muhg6t3yu0utfgde8tsf99m9t0nu57cd9vvmjf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqd2fsjh30vhafuen4sa9xsd4p9yatv0xdca94ujxj48wvvrcmlnv6plm7mr", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 65, + "address": "desmos1up5dvafqg8whkf8e37z5yz47zd50fl3cpwj87u", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 264, + "address": "desmos1up724h2hkn5j6sfk38x0fmnyp2xnvjn9amsj0m", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 67, + "address": "desmos1u2g42tlzq9jtzldkpwpr2mxcvqaqj74eenvu25", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 232, + "address": "desmos1utj2amd80qgkunvm52pqdrcg4h2449jzrcugwl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 293, + "address": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0ejyrw98djzxy7menxm225wn0hc0qfpffv08ys34lculkcey340jdemrvc", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 209, + "address": "desmos1u0am8z4qme59rsug9mh94ew34klk4epnq2c6nt", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 3, + "address": "desmos1uj9c9929scde78wu3u5r99wcavf2fzl7rdesmh", + "coins": [ + { + "amount": "990000000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 94, + "address": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "coins": [ + { + "amount": "3997010", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgvwej6k52cfkwjug9wgu7utcz4tnthr6qr0jg9ec70l79z9p8vmu4x0nal", + "sequence": 15 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 213, + "address": "desmos1un5958a2ajvt08flhpkd8h67aan0mn67jysc4x", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqt2ee78wddhe2s474c5q0yp4dmzdr2h78avrg7ar0cvuaewya3pqs64xmnl", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 256, + "address": "desmos1u7cmy5tx2fn9lmdmphegmnqajedyz37s0mvxm5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtuq7ppwyadtxean5ky35fxf2c6ayshs48a799vyskjctvv8pjgkkslszq9", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 178, + "address": "desmos1azdk7x5lc7yadhrm0esudj5snw3869y6q5u45v", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 51, + "address": "desmos1ar7ptckh355skxcwfl7zne8krnezp53kllyepl", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 182, + "address": "desmos1a6p3cyr046haxrtzy4c0ggxg0amslp9nge6ut5", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 278, + "address": "desmos1a6zqa0xganxwpep8s70jul6ah7lwd4j0r68gxm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 64, + "address": "desmos1amff90quajzsl4929t9dmqyplkqu5efmtcc6pc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 114, + "address": "desmos1au7uulx9s3hm3r3qy9yw400stz5mleaulnmqff", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/ModuleAccount", + "value": { + "account_number": 9, + "address": "desmos17xpfvakm2amg962yls6f84z3kell8c5lypwsu9", + "coins": [], + "name": "fee_collector", + "permissions": null, + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 52, + "address": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "coins": [ + { + "amount": "496014", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepq0k5vmfydwsq7xe68kcqruj2mavc0lkleqz79fxwxuxp8y0tqnkyvcvqxqp", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 219, + "address": "desmos172spgtvufdhfj036esqhgrr8tphx84uq6kqgt0", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 252, + "address": "desmos17d0kwpzr2zcdhcnmcmfujgx2dhqm0ujfua6pmv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 196, + "address": "desmos17s436tx3dxmya0pdkhzqkmaqtn263d60vfkrys", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdu6xnde4wuklmxa7r0ut93kjxtqj2pgasazqpjp60lnfrhg32jf5ke6dy2", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 48, + "address": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "coins": [ + { + "amount": "11000000", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqw67jptm9wyt6hesp54eksrjcr32v0nupumjnpp6wgnq9qw8fkv2zwjm22z", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 10, + "address": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "coins": [ + { + "amount": "100000000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 11 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 234, + "address": "desmos174gaplnhmndtvcyzhvnxm73vwahdgna02d6r3y", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 257, + "address": "desmos17hkt3lun0fhjyt0kxxvry27q7gj7tvnv4wf0j6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 88, + "address": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "coins": [ + { + "amount": "8996990", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 66, + "address": "desmos177jmcjpa02ruc6m2lt82583lrnv8eck25msr3l", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 142, + "address": "desmos1lzlfh4z6qz6630g05ufz9u2psm7tvqdap6k7dy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwf8sy0pre33yz0as30ev9xz3p6qx6tleh2n2vftu3lx4ep9n00kyyvjxsr", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 298, + "address": "desmos1lrrv7x0mpkp66gl6542a9q760w8zav3rkq9c5r", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 217, + "address": "desmos1ly6r00a5qyg27ef02828f3emvrad2mne8yqudq", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 216, + "address": "desmos1l8hxmkg8j3ew0jqwvqc86zz3dzsczckvtjk495", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 86, + "address": "desmos1ljmud4fjt766cneaz2xverm8rdlej20fhn9ejf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 175, + "address": "desmos1lcxt4h5rsa32ml5kctte80qcnqw9t9mft3v4se", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtxe03swwhpxxqm729uda0nurrwtlnjx5hk87hkhwvgezuwken7c553eq4c", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 91, + "address": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqf4gp96c5m905pheq80fny66fw0vuvuu4l3qhl5n9d78rswyk09f24hkd4k", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 42, + "address": "desmos1l6ayl3wcvkpr5yn5a3tgqp3jv60quyxmrph2q0", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 47, + "address": "desmos1lavlnqhpka46ndvljk9kgp5v9k979csqldtfsg", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + } + ], + "params": { + "max_memo_characters": "256", + "sig_verify_cost_ed25519": "590", + "sig_verify_cost_secp256k1": "1000", + "tx_sig_limit": "7", + "tx_size_cost_per_byte": "10" + } + }, + "bank": { + "send_enabled": true + }, + "distribution": { + "delegator_starting_infos": [ + { + "delegator_address": "desmos1qrnfe2emyc5p8dvg3luaeta973lvdklk5auhk6", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000000.000000000000000000" + }, + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "delegator_address": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000.000000000000000000" + }, + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "delegator_address": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "starting_info": { + "creation_height": "678138", + "previous_period": "7", + "stake": "29710000.000000000000000000" + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "delegator_address": "desmos1z3sr49arwjltxuq9r5t4ykezphmjks3dnzucmf", + "starting_info": { + "creation_height": "646584", + "previous_period": "2", + "stake": "9496085.000000000000000000" + }, + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "delegator_address": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "17500000.000000000000000000" + }, + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "delegator_address": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "6000000.000000000000000000" + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "delegator_address": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "starting_info": { + "creation_height": "156764", + "previous_period": "3", + "stake": "1990000.000000000000000000" + }, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "delegator_address": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "starting_info": { + "creation_height": "0", + "previous_period": "6", + "stake": "49997040.000000000000000000" + }, + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "delegator_address": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "starting_info": { + "creation_height": "0", + "previous_period": "7", + "stake": "3050000.000000000000000000" + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "delegator_address": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "delegator_address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "10990000.000000000000000000" + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "delegator_address": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "starting_info": { + "creation_height": "81272", + "previous_period": "1", + "stake": "9500000.000000000000000000" + }, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "delegator_address": "desmos1fs39fdhkus69jskyv5s6xsk5wzrtyutpv67ma6", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "2100000.000000000000000000" + }, + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "delegator_address": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "starting_info": { + "creation_height": "138668", + "previous_period": "76", + "stake": "39987203.000000000000000000" + }, + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "delegator_address": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "2000010.000000000000000000" + }, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "delegator_address": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000.000000000000000000" + }, + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "delegator_address": "desmos1t74p8wd0thcq6hcnczp9eezaudvrec60y8l4hm", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "100000.000000000000000000" + }, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "delegator_address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "900000.000000000000000000" + }, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "delegator_address": "desmos105rr8u0mjqs9wntlmdgx4kskxqa9lv5k5wuaaz", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000000.000000000000000000" + }, + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "delegator_address": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "starting_info": { + "creation_height": "496198", + "previous_period": "1", + "stake": "7777777.000000000000000000" + }, + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "delegator_address": "desmos1svjxha4pnx5grsqc4cfy7ycv54y4fle3vmxxwh", + "starting_info": { + "creation_height": "582067", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "delegator_address": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "starting_info": { + "creation_height": "52445", + "previous_period": "7", + "stake": "19520008.000000000000000000" + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "delegator_address": "desmos1snmetx9sfrmznr4z6d3lnwlyvwu36sgcpzzhlr", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000000.000000000000000000" + }, + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "delegator_address": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "9000000.000000000000000000" + }, + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "delegator_address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "24000000.000000000000000000" + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "delegator_address": "desmos1397mvzsugyk8jakl2wehwysg96rfa6gv3chwuc", + "starting_info": { + "creation_height": "0", + "previous_period": "5", + "stake": "14000000.000000000000000000" + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "delegator_address": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "9000000.000000000000000000" + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "delegator_address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "18000000.000000000000000000" + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "delegator_address": "desmos1fjjvue580y7ux29hv8qg5kfkf5w26jzsh0gm2g", + "starting_info": { + "creation_height": "371064", + "previous_period": "5", + "stake": "19099999.999999999999999999" + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "delegator_address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "starting_info": { + "creation_height": "247523", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "delegator_address": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "starting_info": { + "creation_height": "0", + "previous_period": "6", + "stake": "19930000.000000000000000000" + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "delegator_address": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "delegator_address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "11000000.000000000000000000" + }, + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "delegator_address": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "starting_info": { + "creation_height": "74728", + "previous_period": "11", + "stake": "49900000.000000000000000000" + }, + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "delegator_address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "starting_info": { + "creation_height": "37863", + "previous_period": "2", + "stake": "20000000.000000000000000000" + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "delegator_address": "desmos15ux5mc98jlhsg30dzwwv06ftjs82uy4g3t99ru", + "starting_info": { + "creation_height": "68425", + "previous_period": "3", + "stake": "6000000.000000000000000000" + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "delegator_address": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "starting_info": { + "creation_height": "0", + "previous_period": "55", + "stake": "78917050.000000000000000000" + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "delegator_address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "5990000.000000000000000000" + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "delegator_address": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "starting_info": { + "creation_height": "818036", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "delegator_address": "desmos14wtz9tuxu2ue7lmj3r8dvjajsvaryzttxr7dch", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "delegator_address": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "delegator_address": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "delegator_address": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "10000000.000000000000000000" + }, + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "delegator_address": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "3990000.000000000000000000" + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "delegator_address": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "8987521.000000000000000000" + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "delegator_address": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "starting_info": { + "creation_height": "295238", + "previous_period": "55", + "stake": "19997563.000000000000000000" + }, + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "delegator_address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "starting_info": { + "creation_height": "370696", + "previous_period": "10", + "stake": "99.999999999999999999" + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "delegator_address": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "starting_info": { + "creation_height": "130811", + "previous_period": "9", + "stake": "113890000.000000000000000000" + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "delegator_address": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "10100000.000000000000000000" + }, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "delegator_address": "desmos168yfpd2t8lvfxwu8lcu0ppuh3kl598g53xq7hk", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "15000000.000000000000000000" + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "delegator_address": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "delegator_address": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "29997035.000000000000000000" + }, + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "delegator_address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "3000000.000000000000000000" + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "delegator_address": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "9000000.000000000000000000" + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "delegator_address": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "starting_info": { + "creation_height": "0", + "previous_period": "15", + "stake": "29997010.000000000000000000" + }, + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "delegator_address": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10.000000000000000000" + }, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "delegator_address": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "starting_info": { + "creation_height": "80539", + "previous_period": "3", + "stake": "29996071.000000000000000000" + }, + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "delegator_address": "desmos1uj9c9929scde78wu3u5r99wcavf2fzl7rdesmh", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000000.000000000000000000" + }, + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "delegator_address": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "6000000.000000000000000000" + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "delegator_address": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "starting_info": { + "creation_height": "67656", + "previous_period": "1", + "stake": "9500000.000000000000000000" + }, + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "delegator_address": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "9000000.000000000000000000" + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "delegator_address": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "delegator_withdraw_infos": [], + "fee_pool": { + "community_pool": [ + { + "amount": "8679.469417296391864640", + "denom": "udaric" + } + ] + }, + "outstanding_rewards": [ + { + "outstanding_rewards": [ + { + "amount": "101994.115924909712911072", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "outstanding_rewards": [ + { + "amount": "89.902703810740898101", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "outstanding_rewards": [ + { + "amount": "15.365111856782241240", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "outstanding_rewards": [ + { + "amount": "6.562864577044823190", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "outstanding_rewards": [ + { + "amount": "130.463251336162156036", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "outstanding_rewards": [ + { + "amount": "47.151093185356539047", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "outstanding_rewards": [ + { + "amount": "113.433287059131003993", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "outstanding_rewards": [ + { + "amount": "4.796302168365140660", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "outstanding_rewards": [ + { + "amount": "9.408804319662877981", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "outstanding_rewards": [ + { + "amount": "1.109399006866182354", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "outstanding_rewards": [ + { + "amount": "1.252798459192403804", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "outstanding_rewards": [ + { + "amount": "0.279148470689626547", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "outstanding_rewards": [ + { + "amount": "88.295150953593055134", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "outstanding_rewards": [ + { + "amount": "102929.967854837695235369", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "outstanding_rewards": [ + { + "amount": "7.612515619650369271", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "outstanding_rewards": [ + { + "amount": "0.267853803339512736", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "outstanding_rewards": [ + { + "amount": "20.110602198843662927", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "outstanding_rewards": [ + { + "amount": "102288.985761336446412166", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "outstanding_rewards": [ + { + "amount": "78.210822723003256756", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "outstanding_rewards": [ + { + "amount": "352.111576274115630659", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "outstanding_rewards": [ + { + "amount": "10.582675616852049971", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "outstanding_rewards": [ + { + "amount": "103.386761807131855054", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "outstanding_rewards": [ + { + "amount": "140.039008627399498505", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "outstanding_rewards": [ + { + "amount": "8.990270381073857610", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "outstanding_rewards": [ + { + "amount": "3.550915397492942931", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "outstanding_rewards": [ + { + "amount": "5.285876373503512070", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "outstanding_rewards": [ + { + "amount": "164.689022063976253980", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "outstanding_rewards": [ + { + "amount": "575.914131162941796882", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "outstanding_rewards": [ + { + "amount": "0.689558124425968633", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "outstanding_rewards": [ + { + "amount": "0.729207175227187838", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "outstanding_rewards": [ + { + "amount": "86.671057191790845269", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "outstanding_rewards": [ + { + "amount": "23.777000680628243720", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "outstanding_rewards": [ + { + "amount": "59.932296159307569887", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "outstanding_rewards": [ + { + "amount": "118.976808775546665072", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "outstanding_rewards": [ + { + "amount": "1008.091695985025337598", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "outstanding_rewards": [ + { + "amount": "125.513662883828665510", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "outstanding_rewards": [ + { + "amount": "1.996547142568911387", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "outstanding_rewards": [ + { + "amount": "217.524609634862603747", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "outstanding_rewards": [ + { + "amount": "3.285865877059279259", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "outstanding_rewards": [ + { + "amount": "199.720660041274564764", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "outstanding_rewards": [ + { + "amount": "2.615403907029462120", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "outstanding_rewards": [ + { + "amount": "112121.774048910964709972", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "outstanding_rewards": [ + { + "amount": "38.597272957652395656", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "outstanding_rewards": [ + { + "amount": "0.808843020276657310", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "outstanding_rewards": [ + { + "amount": "73.984555899373361572", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "params": { + "base_proposer_reward": "0.010000000000000000", + "bonus_proposer_reward": "0.040000000000000000", + "community_tax": "0.020000000000000000", + "withdraw_addr_enabled": true + }, + "previous_proposer": "desmosvalcons1k6wks6q2gr467n8te3v76k4paf9xylhrq3rgzm", + "validator_accumulated_commissions": [ + { + "accumulated": [ + { + "amount": "10199.411592490971291106", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "accumulated": [ + { + "amount": "8.990270381074089812", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "accumulated": [ + { + "amount": "12.981672174984810130", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "accumulated": [ + { + "amount": "0.656286457704482319", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "accumulated": [ + { + "amount": "13.046325133616215602", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "accumulated": [ + { + "amount": "4.715109318535653898", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "accumulated": [ + { + "amount": "57.106161872711145094", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "accumulated": [ + { + "amount": "0.504564461803214066", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "accumulated": [ + { + "amount": "0.940880431966287799", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "accumulated": [ + { + "amount": "0.296025990688718239", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "accumulated": [ + { + "amount": "0.125279845919240380", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "accumulated": [ + { + "amount": "0.279148470522901421", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "accumulated": [ + { + "amount": "8.829515095359305513", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "accumulated": [ + { + "amount": "10292.996785483769523535", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "accumulated": [ + { + "amount": "0.890664327499093207", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "accumulated": [ + { + "amount": "0.026785380333951273", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "accumulated": [ + { + "amount": "15.467320011469931080", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "accumulated": [ + { + "amount": "10228.898576133644641214", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "accumulated": [ + { + "amount": "15.642164544600651349", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "accumulated": [ + { + "amount": "35.274314781575581501", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "accumulated": [ + { + "amount": "1.058267561685204996", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "accumulated": [ + { + "amount": "10.338676180713185505", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "accumulated": [ + { + "amount": "14.678206635638635855", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "accumulated": [ + { + "amount": "0.899027038107385762", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "accumulated": [ + { + "amount": "0.355091539749294293", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "accumulated": [ + { + "amount": "1.322545574119125810", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "accumulated": [ + { + "amount": "16.468927038126125397", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "accumulated": [ + { + "amount": "57.911616114019479801", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "accumulated": [ + { + "amount": "0.068955812442596863", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "accumulated": [ + { + "amount": "0.072920717522718783", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "accumulated": [ + { + "amount": "86.671057191790845269", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "accumulated": [ + { + "amount": "2.377700068062824369", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "accumulated": [ + { + "amount": "6.159784302945956995", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "accumulated": [ + { + "amount": "11.984839273727533333", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "accumulated": [ + { + "amount": "101.102340050975457763", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "accumulated": [ + { + "amount": "62.756831441914332764", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "accumulated": [ + { + "amount": "0.199654714256891138", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "accumulated": [ + { + "amount": "22.599254155525946968", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "accumulated": [ + { + "amount": "0.262869270164742341", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "accumulated": [ + { + "amount": "179.764006357004587160", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "accumulated": [ + { + "amount": "0.269759148226246212", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "accumulated": [ + { + "amount": "11212.177404891096470995", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "accumulated": [ + { + "amount": "3.859727295765239566", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "accumulated": [ + { + "amount": "0.080884302027665731", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "accumulated": [ + { + "amount": "7.398455589937336157", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "validator_current_rewards": [ + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "91794.704332418741619966", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "rewards": { + "period": "13", + "rewards": null + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "rewards": { + "period": "3", + "rewards": [ + { + "amount": "5.906578119340340871", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "117.416926202545940434", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "rewards": { + "period": "4", + "rewards": null + }, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "rewards": { + "period": "8", + "rewards": [ + { + "amount": "26.643804668776356486", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "rewards": { + "period": "19", + "rewards": [ + { + "amount": "1.157160154867609611", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "8.467923887696590182", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "rewards": { + "period": "7", + "rewards": null + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "rewards": { + "period": "2", + "rewards": null + }, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "rewards": { + "period": "4", + "rewards": null + }, + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "rewards": { + "period": "77", + "rewards": null + }, + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "rewards": { + "period": "4", + "rewards": null + }, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "79.465635858233749621", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "rewards": { + "period": "2", + "rewards": null + }, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "92636.971069353925711834", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "6.721851292151276064", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "rewards": { + "period": "8", + "rewards": [ + { + "amount": "4.643282187347217383", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "92060.087185202801770952", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "rewards": { + "period": "3", + "rewards": [ + { + "amount": "62.568658178402605407", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "rewards": { + "period": "7", + "rewards": [ + { + "amount": "244.152888715207773091", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "rewards": { + "period": "7", + "rewards": null + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "rewards": { + "period": "8", + "rewards": null + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "rewards": { + "period": "12", + "rewards": [ + { + "amount": "3.963330799355628121", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "rewards": { + "period": "58", + "rewards": [ + { + "amount": "483.519617404512709471", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "rewards": { + "period": "7", + "rewards": null + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "0.656286457704469055", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "rewards": { + "period": "5", + "rewards": [ + { + "amount": "21.399300612565419351", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "rewards": { + "period": "5", + "rewards": [ + { + "amount": "5.250291661635865389", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "rewards": { + "period": "56", + "rewards": [ + { + "amount": "106.991969501672202855", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "rewards": { + "period": "16", + "rewards": null + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "rewards": { + "period": "4", + "rewards": null + }, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "rewards": { + "period": "6", + "rewards": [ + { + "amount": "4.500067268929620715", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "rewards": { + "period": "6", + "rewards": [ + { + "amount": "28.383808238982154657", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "rewards": { + "period": "7", + "rewards": null + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "rewards": { + "period": "17", + "rewards": [ + { + "amount": "1.588129026434867365", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "rewards": { + "period": "2", + "rewards": null + }, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "rewards": { + "period": "4", + "rewards": [ + { + "amount": "2.345644758802309851", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "100909.596644019868238977", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "rewards": { + "period": "6", + "rewards": [ + { + "amount": "32.989968058156733207", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "0.727958718248991579", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "validator_historical_rewards": [ + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000008091243342966", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000771346355328", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001922141814452", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007057006985361", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007057006985361", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "8", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007057006985361", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "9", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007138021250547", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "10", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007138021250547", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "11", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007138021250547", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "12", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007138021250547", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000002185789795795", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007122026343277", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000527884195803", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001121585753287", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000249342449667", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000249342449667", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000249342449667", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000249342449667", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "8", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000251383653367", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "9", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000251383653367", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "10", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000402318534380", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "11", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000444612521407", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "12", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000444612521407", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "13", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000571106739747", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "14", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "15", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "16", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "17", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "18", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001850860900021", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001850860900021", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001850860900021", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001850860900021", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001926243014587", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000536913625368", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "period": "76", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000006968557500871", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000241068423005", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000865152208314", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001667439590221", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007245598184295", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007245598184295", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000051824620300", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000051824620300", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001964571272334", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000186679236846", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000477208678459", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000004631562251190", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001125701871724", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001125719298889", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007415774592002", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000008091243342966", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000290529441613", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000384080670052", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "period": "11", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000006768039270477", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000000248317285", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000005700830189598", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000350576849333", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "19", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000895780206965", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "20", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000895780206965", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "50", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001181858081006", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "55", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001303282018862", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "56", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001303282018862", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "57", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001744595040588", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000104478503700", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001665546870152", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001665546870152", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007064390466147", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "period": "55", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000002757640938405", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000475550112625", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000637158820761", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000637158820761", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "8", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001183749004006", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "9", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001183749004006", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "10", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000004373208816726", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "11", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000008989252562312", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "12", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000008989252562312", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "13", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000009070968906627", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "14", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000009151465289268", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "15", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000009151465289268", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001073583667265", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000003988089393243", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001796892428312", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000882352426707", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000006434286050824", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000064759400069", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000191638094963", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000268878639368", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "period": "15", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000026499398105", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "period": "16", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000638844583768", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000082187575233", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000294204983793", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000002185789795795", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007451108779776", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "validator_slash_events": [ + { + "height": "74578", + "period": "2", + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "68800", + "period": "4", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009009009009009010", + "validator_period": "4" + } + }, + { + "height": "79013", + "period": "9", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009857239972807614", + "validator_period": "9" + } + }, + { + "height": "89815", + "period": "10", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009955372468245795", + "validator_period": "10" + } + }, + { + "height": "163458", + "period": "11", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009708737864077670", + "validator_period": "11" + } + }, + { + "height": "177109", + "period": "12", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009803921568627451", + "validator_period": "12" + } + }, + { + "height": "236425", + "period": "2", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "501320", + "period": "6", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009547738693467337", + "validator_period": "6" + } + }, + { + "height": "704146", + "period": "8", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009761023224503535", + "validator_period": "8" + } + }, + { + "height": "31437", + "period": "3", + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "3" + } + }, + { + "height": "31437", + "period": "4", + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p", + "validator_slash_event": { + "fraction": "0.008417508417508418", + "validator_period": "4" + } + }, + { + "height": "52427", + "period": "2", + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "362290", + "period": "7", + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf", + "validator_slash_event": { + "fraction": "0.009800580194347506", + "validator_period": "7" + } + }, + { + "height": "260327", + "period": "2", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "336458", + "period": "5", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.009569377990430623", + "validator_period": "5" + } + }, + { + "height": "337513", + "period": "6", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.009661835748792271", + "validator_period": "6" + } + }, + { + "height": "351733", + "period": "8", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.009836065573770492", + "validator_period": "8" + } + }, + { + "height": "386028", + "period": "9", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.009933774834437087", + "validator_period": "9" + } + }, + { + "height": "391337", + "period": "14", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006872852233676976", + "validator_period": "14" + } + }, + { + "height": "410149", + "period": "15", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006920415224913495", + "validator_period": "15" + } + }, + { + "height": "447477", + "period": "10", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006688963210702342", + "validator_period": "10" + } + }, + { + "height": "450617", + "period": "16", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006968641114982579", + "validator_period": "16" + } + }, + { + "height": "460915", + "period": "11", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006734006734006735", + "validator_period": "11" + } + }, + { + "height": "463871", + "period": "12", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006779661016949153", + "validator_period": "12" + } + }, + { + "height": "547861", + "period": "17", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.007017543859649123", + "validator_period": "17" + } + }, + { + "height": "619604", + "period": "18", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.007067137809187280", + "validator_period": "18" + } + }, + { + "height": "622769", + "period": "13", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006825938566552902", + "validator_period": "13" + } + }, + { + "height": "47953", + "period": "6", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "validator_slash_event": { + "fraction": "0.009267840593141798", + "validator_period": "6" + } + }, + { + "height": "577857", + "period": "2", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "673305", + "period": "4", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "validator_slash_event": { + "fraction": "0.009099181073703367", + "validator_period": "4" + } + }, + { + "height": "673962", + "period": "5", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "validator_slash_event": { + "fraction": "0.009182736455463729", + "validator_period": "5" + } + }, + { + "height": "349033", + "period": "3", + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg", + "validator_slash_event": { + "fraction": "0.009523809523809524", + "validator_period": "3" + } + }, + { + "height": "253534", + "period": "2", + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "184052", + "period": "3", + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783", + "validator_slash_event": { + "fraction": "0.009999950000249999", + "validator_period": "3" + } + }, + { + "height": "31272", + "period": "2", + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "747326", + "period": "2", + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "45671", + "period": "5", + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "validator_slash_event": { + "fraction": "0.009547734855181968", + "validator_period": "5" + } + }, + { + "height": "45671", + "period": "6", + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "validator_slash_event": { + "fraction": "0.009639772850421979", + "validator_period": "6" + } + }, + { + "height": "228481", + "period": "2", + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "656127", + "period": "6", + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "6" + } + }, + { + "height": "518947", + "period": "4", + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "4" + } + }, + { + "height": "248244", + "period": "2", + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "530346", + "period": "6", + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2", + "validator_slash_event": { + "fraction": "0.009955201592832255", + "validator_period": "6" + } + }, + { + "height": "107743", + "period": "2", + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "108363", + "period": "7", + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983", + "validator_slash_event": { + "fraction": "0.009533366783743101", + "validator_period": "7" + } + }, + { + "height": "694635", + "period": "4", + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983", + "validator_slash_event": { + "fraction": "0.008347245409015026", + "validator_period": "4" + } + }, + { + "height": "74609", + "period": "2", + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "518941", + "period": "4", + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "4" + } + }, + { + "height": "661534", + "period": "2", + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "697119", + "period": "4", + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "4" + } + }, + { + "height": "203296", + "period": "2", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "218069", + "period": "57", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009982460305322508", + "validator_period": "57" + } + }, + { + "height": "358367", + "period": "19", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009670849308992807", + "validator_period": "19" + } + }, + { + "height": "366409", + "period": "20", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009765287937091342", + "validator_period": "20" + } + }, + { + "height": "452794", + "period": "50", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009917617990559035", + "validator_period": "50" + } + }, + { + "height": "604516", + "period": "56", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009883795707011350", + "validator_period": "56" + } + }, + { + "height": "123125", + "period": "2", + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "124612", + "period": "5", + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr", + "validator_slash_event": { + "fraction": "0.008347245409015026", + "validator_period": "5" + } + }, + { + "height": "166515", + "period": "6", + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr", + "validator_slash_event": { + "fraction": "0.008417508417508418", + "validator_period": "6" + } + }, + { + "height": "99866", + "period": "2", + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "657471", + "period": "2", + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "69292", + "period": "2", + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "390788", + "period": "2", + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "391156", + "period": "4", + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt", + "validator_slash_event": { + "fraction": "0.007518796992481204", + "validator_period": "4" + } + }, + { + "height": "549132", + "period": "2", + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "692519", + "period": "4", + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0", + "validator_slash_event": { + "fraction": "0.008901230940100168", + "validator_period": "4" + } + }, + { + "height": "80132", + "period": "8", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.007653061224489796", + "validator_period": "8" + } + }, + { + "height": "80132", + "period": "13", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009942663971099991", + "validator_period": "13" + } + }, + { + "height": "89814", + "period": "14", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009952040213480310", + "validator_period": "14" + } + }, + { + "height": "163457", + "period": "15", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009960696371473663", + "validator_period": "15" + } + }, + { + "height": "236425", + "period": "2", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "358814", + "period": "4", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.005154639175257732", + "validator_period": "4" + } + }, + { + "height": "420758", + "period": "5", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.005181347150259068", + "validator_period": "5" + } + }, + { + "height": "501321", + "period": "11", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009921845709152947", + "validator_period": "11" + } + }, + { + "height": "811453", + "period": "12", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009932591404228979", + "validator_period": "12" + } + }, + { + "height": "578906", + "period": "3", + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m", + "validator_slash_event": { + "fraction": "0.009900990099009901", + "validator_period": "3" + } + }, + { + "height": "19779", + "period": "2", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "19992", + "period": "3", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "validator_slash_event": { + "fraction": "0.009427609427609428", + "validator_period": "3" + } + }, + { + "height": "20399", + "period": "4", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "validator_slash_event": { + "fraction": "0.009517335146159076", + "validator_period": "4" + } + }, + { + "height": "448774", + "period": "5", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "validator_slash_event": { + "fraction": "0.009608785175017159", + "validator_period": "5" + } + }, + { + "height": "244646", + "period": "2", + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "539056", + "period": "5", + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0", + "validator_slash_event": { + "fraction": "0.009667622149989158", + "validator_period": "5" + } + }, + { + "height": "122020", + "period": "6", + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw", + "validator_slash_event": { + "fraction": "0.009259259259259260", + "validator_period": "6" + } + }, + { + "height": "195764", + "period": "5", + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "5" + } + }, + { + "height": "588924", + "period": "16", + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl", + "validator_slash_event": { + "fraction": "0.009667630207143979", + "validator_period": "16" + } + }, + { + "height": "398591", + "period": "4", + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "4" + } + }, + { + "height": "596665", + "period": "5", + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg", + "validator_slash_event": { + "fraction": "0.008417508417508418", + "validator_period": "5" + } + }, + { + "height": "35790", + "period": "3", + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "3" + } + }, + { + "height": "35790", + "period": "4", + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw", + "validator_slash_event": { + "fraction": "0.008978675645342313", + "validator_period": "4" + } + }, + { + "height": "241517", + "period": "2", + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + } + ] + }, + "genutil": { + "gentxs": [] + }, + "magpie": { + "default_session_length": "2400", + "sessions": [] + }, + "posts": { + "post_reactions": { + "00727e9704aceb6e10102366dcdeeaf94d063c4588cb774ba6d37a40e619b258": [ + { + "owner": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "value": ":dizzy:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":dizzy:" + } + ], + "00f7cf78bb3e31d72605e186bcdfd11d2d0195566dbeec61d5fe59aaa5eb3f75": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":dragon:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + } + ], + "033080f107d68155e20228c4709385167cb0dfa19c0643d46758b2690dbafba0": [ + { + "owner": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "value": ":heart:" + }, + { + "owner": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "value": ":+1:" + } + ], + "040b010cd0dda604dc047a8a9c7ba0b3e4198f64cf93ba24fdb783c0bc645fac": [ + { + "owner": "desmos1cf2y5687axm6pmrr9ferdt69znjpdfan0qjr0e", + "value": ":heart:" + } + ], + "044a81561f1737ce018b1741b88aba6eb8fe383a2514abac950fd46c55b8da97": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "067bdc9ae7c2944fe7b36d119c16abb195e4c7bb1b62e1afe495d2c5fff98f84": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":sweat_smile:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":money-mouth_face:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":star-struck:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "07571c002e232135526847f20f3bf817b1129c1132572b47fbd44116814d6e7d": [ + { + "owner": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "value": ":heart:" + } + ], + "093a6057e15d3990d8cc769fbcab978ee997ac3330f709f0b37cd3a88b0d4046": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":laughing:" + } + ], + "09e8767f04f1983b05ee56dadd739e6787b2a84e8d7493106d067bb04b0bbd3c": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + }, + { + "owner": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "value": ":star-struck:" + }, + { + "owner": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + } + ], + "09e8d0e8e36b109860d6e6214e51f0d1b68af627e8f39ca4811db194207f7216": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "09f9cc17d6a7c534dacea4f9bc188d54d20d86159e08a266bf4d6aa99881a777": [ + { + "owner": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "value": ":heart:" + }, + { + "owner": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "value": ":smiley:" + } + ], + "0adee0963051bf6631a3f98fe55042c8e0eba1fd2168be6497484546d432c951": [ + { + "owner": "desmos1u2g42tlzq9jtzldkpwpr2mxcvqaqj74eenvu25", + "value": ":+1:" + } + ], + "0af5b98efda9ffebe78035e7882d2797dab52f8c5140e7d8d9c4c8943882c28f": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":star-struck:" + } + ], + "0b6ec64aab1bf4ca15e3873eef417e82f32ee5c5b22532752d9e2a328f1b5446": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":muscle:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":muscle:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":muscle:" + } + ], + "0ba5017c85961e62b8b936f60f52277b4417838254153aad3b0cc29937a6b50f": [ + { + "owner": "desmos1ar7ptckh355skxcwfl7zne8krnezp53kllyepl", + "value": ":+1:" + } + ], + "0f4b0ffe25896f08fc221e79ab4c7b9490fdff32a0d3894e20bb7f417117484b": [ + { + "owner": "desmos1zk3ms4n0x8h98axwm4tflkrnn4mmy8u28nnmfd", + "value": ":heart:" + } + ], + "1135e97293cc3afb47cf7b6bb20868b34ab5a3fa5573a15f7f3d19f8d593c220": [ + { + "owner": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "value": ":heart:" + } + ], + "11b491a237c7f1555291f8eeb1b67abc7f8b0c12793f18e3c5cbc321b89b6ea2": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":innocent:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":sweat_smile:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":sweat_smile:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":innocent:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":innocent:" + } + ], + "11cee369888628b5fb8b21b68b37a4ce634c7061522c4cf0475ba4d09d2efaa5": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":joy:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":joy:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":joy:" + } + ], + "12bba6721738efdacd376ba556f56b660814c8cb37ab80a3265e8ba079c061c3": [ + { + "owner": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "value": ":+1:" + } + ], + "13ba624c0ad6ffea3d3d492b4c68e3d8f3643ad097fe8a5ae92d63e1d42f7d22": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":star-struck:" + }, + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":star-struck:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":star-struck:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":grin:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":grin:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":star-struck:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":heart_eyes:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":smiley:" + } + ], + "141e5bea03a282ecf97b9832b56d05cae252c8e57fec76dc62108d23a4cda652": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":smiley:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart:" + } + ], + "15cb5942ad200fe3530b8a9ff2f6ab6a5eb60164db98844919a6599bed7bf402": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "172fb00864632bb4dcae5285a5a0dc88694e481655ff7a3ce7f302f20daf6af1": [ + { + "owner": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1w2yqy80jyxvkqe886l6rxkuaz27u8h8dk74hce", + "value": ":+1:" + } + ], + "181589070d27efc79b9de090cc69f0b2e0586dd409589d635c03b89f6156966d": [ + { + "owner": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "value": ":slightly_smiling_face:" + } + ], + "189ff858bf24feaadb331dca4a185c3332e3f931a148dd1683eac871cb15ed34": [ + { + "owner": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "value": ":woman_raising_hand:" + } + ], + "19112db27ae54716a0d6538e2fef371d018e421ec7a715b438352657c721aeaa": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "1a0d2ecca7fa33ca2f23dbdcd358fcb8d31911eb436a058d374f94b592f5779c": [ + { + "owner": "desmos19lt9fwhrlmmkwjkpcmecxeen8lhag555xhfyg5", + "value": ":heart:" + } + ], + "1ded52064ac9537db836dbc288b7cd95851356d4a87b05162aa0483451b864b1": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":blush:" + }, + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":blush:" + } + ], + "1df8229ada2aeb6f31de5ad9d99d346fab6e1ca6467b0dd7218db33ca6590889": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "2127c22bf7b9ef01aa816f17e4c52a03e3091c2ea2e8650e2c112ba137c9f1a8": [ + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "24a740ac41e92e812470781d3f74f4819c035e58bcbc8e385c353902774a7554": [ + { + "owner": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "value": ":heart:" + } + ], + "264bdedcb20c712b07f6abb7e81408ba3d08967452164347e46afdbb81f8a722": [ + { + "owner": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "value": ":tada:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":smiley:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart_eyes:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":laughing:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":grin:" + } + ], + "26e892f0d98c4b5fd57ec6bba9f750602984abf0a2b3cbc7be6301934c0b3104": [ + { + "owner": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "value": ":heart:" + } + ], + "27bc875bc97749bdbf327f8608ecfd5e1e3965040e6f4584e1d0c3a101ea385b": [ + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":grinning:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":lollipop:" + } + ], + "2a3fe29983349f896c7ed53c6088462a089937660ecdba870738c07fb7bcd95f": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "2ae0c23b04fa74d9676e64b225a37ebe999260ed69137cc19361cce8b2132c22": [ + { + "owner": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "value": ":+1:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":grin:" + }, + { + "owner": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "value": ":+1:" + } + ], + "2b211f406c64b6681ccd0e0a1e1188cf865b3c8309ef9879d1af5d41247181c4": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":astonished:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":thinking_face:" + } + ], + "2c49c15e4851797147b3cd48ecfd1b3f1e31afd4e77b607bd6492f310022f77a": [ + { + "owner": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "value": ":heart:" + }, + { + "owner": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "value": ":+1:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":thinking_face:" + }, + { + "owner": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "value": ":heart:" + } + ], + "2dfea9f4698434bb1f2fbf0aef47295d924991f09a0449406fd2f585a5af8a2a": [ + { + "owner": "desmos1xlkg00kqf37k0uspljg4pamjdt6yjkxdzvjpdu", + "value": ":heart:" + } + ], + "2e18c725c1390591e40c1c66c4a3ed9a6fe7c8a82fe62387eda217478f2509f6": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":star-struck:" + } + ], + "2ebeac735fbc1be6aa850ff98c3750aa749616a528ccb5add9c6293a11ac3f93": [ + { + "owner": "desmos1up5dvafqg8whkf8e37z5yz47zd50fl3cpwj87u", + "value": ":heart:" + } + ], + "3076bd5bddf2d6757eb41812d220c752baadcaaaca452202461d1b2f924bff53": [ + { + "owner": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "value": ":+1:" + }, + { + "owner": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "value": ":+1:" + } + ], + "34938b0b4a427664a9b496323c79fcf2712492b51dbdac33aad0038e94a04a68": [ + { + "owner": "desmos1q8df8fp3tpx6gxjlhsc0vzqaxet6wa2pmxrhzh", + "value": ":speak_no_evil:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":speak_no_evil:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":speak_no_evil:" + } + ], + "35d7d90c264a3632203b28d453c2940f495b9f98d5277ebc6398ec641b3be464": [ + { + "owner": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "value": ":muscle:" + }, + { + "owner": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "value": ":heart:" + } + ], + "36616f40467d40793d05a00c484f3e275da6a2c6fac0ae14c75c22deab7cece3": [ + { + "owner": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "value": ":+1:" + }, + { + "owner": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "value": ":+1:" + }, + { + "owner": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "value": ":+1:" + } + ], + "3736467c59e31fd2b7bc9bdb043600cc957d59d28ee9e91476e192b28bd1941c": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "37377051b9eac59c8636d0890b2023b94b9a079633553e37e3080c9a7864db9d": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "38b957c4324cb3402bb4ce7d9925d0d535fece27edeabd13fe200066465cd572": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":yum:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":yum:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart_eyes:" + } + ], + "38ec27b2ed048f7c2569d741817fb5fdf8fdcd386146cea2f06a1133d5ebe5a8": [ + { + "owner": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "value": ":heart:" + }, + { + "owner": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "value": ":heart:" + } + ], + "3918bcdd8f81e4c4c21810bc63a10a51d9674d0a83d71606954be2a5f0e7977b": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + } + ], + "3a59a129b85dfde470d7ecefa495c81ae483b7fae5c28fa03d5412c74e546d70": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":wink:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":face_vomiting:" + }, + { + "owner": "desmos1lzlfh4z6qz6630g05ufz9u2psm7tvqdap6k7dy", + "value": ":grinning:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart_eyes:" + } + ], + "3b5746dddc1beeda81000364994854e910457784a6a931fc5baa57f57ab749a0": [ + { + "owner": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "value": ":heart:" + }, + { + "owner": "desmos1puh5url3u062vaeryw365jzzx8uuajdwjqrtyk", + "value": ":heart:" + } + ], + "3b69f438ea55beb1a1bdb857adc22c7cac9c7744420af4264c53eb2f19c61877": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":sunny:" + } + ], + "3e7dfbea6871bb86cf371dd51ff3ad9f05c9bf762bbe6874d8c4dc106c90e0a5": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "3e85c459aebf39f2f2a48cb3da04abdf3c85d32249c66111e61f6d7af0681140": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":zany_face:" + }, + { + "owner": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "value": ":rocket:" + }, + { + "owner": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "value": ":zany_face:" + }, + { + "owner": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "value": ":heartpulse:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":rocket:" + } + ], + "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381": [ + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":rose:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":star-struck:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":cat:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":cat:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":star-struck:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":rose:" + }, + { + "owner": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "value": ":star-struck:" + }, + { + "owner": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "value": ":cat:" + }, + { + "owner": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "value": ":rose:" + } + ], + "4309738299505c01a459506da086e278d0ea958c62d5fc7f052e91cbf6754679": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "43af5579eb26ccf06a5e5a1ce050ed21b29fcd963a9c88c02be73b1bcedeaf9c": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos1t74p8wd0thcq6hcnczp9eezaudvrec60y8l4hm", + "value": ":+1:" + }, + { + "owner": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes:" + } + ], + "44ef0b9c658b899cfd01aa559aad3a38515c5cb43a089b5169f85ba724f6dd39": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "450c0ece224df91f313f5b59a2b7f62857745f7b01bda74119b572fe96861896": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":+1:" + } + ], + "4618b62d42062df82a025ae0ed71829ba5c93523bbb99b3bed8c042099fe06c9": [ + { + "owner": "desmos14wtz9tuxu2ue7lmj3r8dvjajsvaryzttxr7dch", + "value": ":+1:" + } + ], + "4675d63e1d8c92937ea07096cb8df7bc9f1c74e709ce3b11c45324ae4f4d6635": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":rolling_on_the_floor_laughing:" + } + ], + "469a63694b6c9548d7f6183a745081b91e380de1d14aa863abdf10333ff1db12": [ + { + "owner": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "value": ":hankey:" + } + ], + "471b9488ac573227538e2fbe6c522f74996f50266c491fea871df1a8ad7c8be2": [ + { + "owner": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "value": ":heart:" + } + ], + "4cb48fdecb39e736588aa342e3838a37f379b3308ccd1dc5d347ee159213cbea": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "4db5e08a4243cef25bcd8c76d81b7d5518f0f3c81a8eda1b41d4aa5bccb8d866": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + } + ], + "4f5f4e36ef510417471d7c78d18be3a5f544e80d0cba43fd0b72185916e101f6": [ + { + "owner": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "value": ":+1:" + } + ], + "4fdd46ccb4b1c2ee761968a8d59ad5396959264ee1b1b968da38c429780fac0e": [ + { + "owner": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "value": ":heart:" + } + ], + "517f74af9ac94c1cdac62b51186d757b708a823c9d60676ddc3c6cc3f8186c9c": [ + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":heart_eyes:" + } + ], + "5613ba6047ecfe017d63b0ec400f12e27708f77b6a369c9b80474bea5c74df4d": [ + { + "owner": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "value": ":heart:" + }, + { + "owner": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "value": ":+1:" + } + ], + "57b8bdcce250124a0e1cefd56f0c7eae6e377a6ee2afee4f292a0d879570e931": [ + { + "owner": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "value": ":heart:" + }, + { + "owner": "desmos1amff90quajzsl4929t9dmqyplkqu5efmtcc6pc", + "value": ":heart:" + } + ], + "581845695dad7c2950eee1b9908e1567f500d625d9343348a5363f99a1c6122a": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "59805b9c4a4384a5d305bd02c7f847b3be04ab2df24985d9e49f5b435a6b62b4": [ + { + "owner": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "value": ":heart:" + } + ], + "59b2c45b56dfe98a4f181def79e5a404a86d731bf9ddee55cf6d3aa345a1a571": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "5a5862d7c66756cefe8c6260a34229ab7ea226a26080cffbc1d4b4fecd14ed85": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "5afe57f19645ace0e9bc489d192dfbf8bdc06ab8fc84eafee5c08fe1828fe81d": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "5cc924a902a98222a2f51871d59f8c6afeb08b011f90f224a0b10d2e1232c969": [ + { + "owner": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "value": ":heart:" + }, + { + "owner": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "value": ":heart:" + } + ], + "613fc3568b418879705644036b972cd0fa99cfbfc887a7416deb3136bce7deee": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":pensive:" + } + ], + "6485d8b4d1fc82896411886b32fce814112797b2f27fb683b73bb2a3ddeebd53": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":dove:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":space_invader:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":space_invader:" + }, + { + "owner": "desmos1jqpqjcmqq0rq2dzgk6y9cljvx35jwqndkxr54z", + "value": ":space_invader:" + } + ], + "64d6a0562f599a1ebf799748f2ba3c2b27e9b340f59a4d9bbd765940402e00bd": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "value": ":heart:" + }, + { + "owner": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "value": ":zany_face:" + } + ], + "6503fef2a7553d1f16c1722bd5e9ffc385bc6a2c4924f4172ac5e022d316d0d7": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "657845afdc3f029bc8b3c83e263bd77c179bff67f78ec687370ac7eef459ce5f": [ + { + "owner": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "value": ":heart:" + } + ], + "6620f5a1435fa64906810b9748cb3bff863a5c6601bef76959a2950f22a0bf20": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "66a5d9283c2b556c909b7cc998443bc31d2a1817a780939335a07be084dd3a9d": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":money-mouth_face:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":money-mouth_face:" + }, + { + "owner": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "value": ":money-mouth_face:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":money-mouth_face:" + } + ], + "66daae459a2c1e911f4ae234365728c0f108c2de0cad79a937095d9db3e9db33": [ + { + "owner": "desmos177jmcjpa02ruc6m2lt82583lrnv8eck25msr3l", + "value": ":heart:" + }, + { + "owner": "desmos1gravcjq3t98upzlf2rn74nzml5262ln4y2dlfh", + "value": ":heart:" + }, + { + "owner": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "value": ":+1:" + } + ], + "67df057f87c9a425bfaec22d3d06eed5d7e276d2a22c9da1763b921301e6551d": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "683883159ce4229b3d03e267e52b2e450436ec1b00eea909e677eed3747147b7": [ + { + "owner": "desmos1w8k4qyg395jkdf4lrrpkx47ncapvsszvhehdv5", + "value": ":heart:" + } + ], + "685573a9106221eb114dc232912475866aa3602fc7868cdb86f2cfda07e82513": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":relaxed:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":tulip:" + } + ], + "68795490973ad268b8c55f04a422a87ea9bc1386356883dbcab935b3c4e7094f": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "68e2dad01c64164b7187615e0fa569792d65a7155d8f0456c6ceae6e69612fad": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1l6ayl3wcvkpr5yn5a3tgqp3jv60quyxmrph2q0", + "value": ":heart:" + } + ], + "69312b328da061fdd21187fc0965e87a33a836266ac74d6be8f7e995dce79694": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":heart_eyes:" + } + ], + "6ac40a61ca0385da70868522fe9368c12b293456e8ea621c73082422978e7132": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":smiling_face_with_hearts:" + } + ], + "6cee81830fa2248e68892afb4bdb30c0445bb0066dcf668fe341d0b57701cb2c": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":feet:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":star-struck:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart_eyes:" + } + ], + "704fe60bff2a45d4425bb447f4404a4f8a18c653568930e977f1c2f1b93c2063": [ + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":v:" + }, + { + "owner": "desmos10gzach0ftnpfp7jazqvuhyxzdkjd5pnv5xuq5k", + "value": ":v:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":v:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":v:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":v:" + } + ], + "71e6f45ee2fe7c70db6712c948f3f34f91bcf390c5474ec60218c129ea821409": [ + { + "owner": "desmos197cmxuyr94uqy0r2vk47tu677ala8hn02pdt9l", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":star-struck:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":slightly_smiling_face:" + } + ], + "73e3bd28577b0db77b06985305a3ab97ca536bd0147edc22bcff86d44bc10aba": [ + { + "owner": "desmos1ft37z3kv89mtc2qzyudvmhkakeyje6kuwda29y", + "value": ":heart:" + } + ], + "74eae8e1c3165bea6007fcb8b01c18fffdb9d631c26175beb317016700afe3ef": [ + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":wink:" + } + ], + "77433b270369d6084125107f0fa9c815dac95a7550833e9a269c6086361f6fe9": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":smile:" + } + ], + "775e87dbe5d90c1a62e8452baca6473bbf00de8851b288c70d0ef7a8af81258c": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":thinking_face:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":face_with_head-bandage:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":face_with_head-bandage:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":mask:" + } + ], + "78c88265fa17cb2d75f0ed098b3289b3270f3ea07b505e12d1fd191f50f0503d": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":innocent:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":innocent:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":smiley:" + } + ], + "791c5b4649d2255736a55875adcd621cedfa700f26ab603b16db1b304438e4cc": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":smiley:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "79e103fb576a0897012b55a1b2b37b15bc0e83872324c01b3ce65e0df57e1891": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart_eyes:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "7a23ef9435c62271e033902c92c1353ee6f55dc81ae5de4b7bdcee858ee04814": [ + { + "owner": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "value": ":heart:" + } + ], + "7b754afb11fdb55d6a8de724bc563081ff40fa9095276c1c4ee8ef363533b2dc": [ + { + "owner": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "value": ":+1:" + } + ], + "7c161934ef3ffcef319d11c70ef123f15618a5001b03f6a6261840caf6262b59": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":100:" + } + ], + "7e0595fe32620e7b97c955086b7db3b07025a966ae2121c2afc4c005652b9d46": [ + { + "owner": "desmos1yqe66ky0v28wprdkxucdtehentypn3svyhfde5", + "value": ":heart:" + } + ], + "7f5c48d35729296df36a51f3ba70fb7c60096e9fd1ad0ea0f4165a83ab8c30b2": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "8006e0b6277a2aa5e44848dc811eda213bafaf77676c7b75e868287ee9255a1c": [ + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + } + ], + "8251102ef8bb5d5275f7dfb502f5bf38534b423e2837ab0b4b05f8a129509f8b": [ + { + "owner": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "value": ":heart:" + } + ], + "855e64ed5de045c872b39d250c711d56f92a880648366a0b20e5216c212b7821": [ + { + "owner": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "value": ":+1:" + } + ], + "86805590e6d83c6567ea9cc2f9d2c562be8b3d64cf84cf1af4decd71232b4ef9": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":zipper-mouth_face:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":mask:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":dizzy_face:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":skull_and_crossbones:" + }, + { + "owner": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "value": ":100:" + } + ], + "8720cc7a0855700c1b7c6d01428b86879abbb766eb6231f9d461ccdcd94faa7c": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "8735c82dc59313ddaf6c72670beef2a4c0b4eb8dbd3cc5536647f7268fee9759": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":grin:" + } + ], + "88789a0fd6eb76daa63405c7d4d59460e97b02d11fd847a3a3c6896f6dc69d0c": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":horse_racing:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":horse_racing:" + } + ], + "891e9102e4784b42c2eddfcdfcd53405c943ee6c3348c9fd813e6bbd033071c4": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "8c29b380549f3a6093266bb5f91016455ccc255ab735879e0887d7cde5937a0f": [ + { + "owner": "desmos1e8xaajgc0l5ftl5m5x390hg0enwjyd5pfyuf9g", + "value": ":heart:" + } + ], + "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92": [ + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":zany_face:" + } + ], + "8ed9bc5d3079cdd9255e07305db5a02c2fd808df2cf662ba034128041539e561": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "90b49a94388deeb7d01febd91885c7c99d10c6270dc649d865de34a02d851342": [ + { + "owner": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "value": ":heart:" + } + ], + "928064ac74fd935819f95348c41ffc4ddd89fb0bf7ef436c8539c8ddf6de59c4": [ + { + "owner": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "value": ":heart:" + }, + { + "owner": "desmos1zy73ag9zde9u7apa49gtw9yud9llap4f55jn7q", + "value": ":heart:" + } + ], + "9412ceaa229b01dd9a291269a1678a4b46b0c88746565c7c72af39aac5741f8c": [ + { + "owner": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "value": ":+1:" + } + ], + "95e0f2ed5e4abb2c3f681332ce99cdc501c6c5260e609c11f5658ab0f6ef9f76": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":joy:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":laughing:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":upside-down_face:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":rolling_on_the_floor_laughing:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":face_with_rolling_eyes:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":zipper-mouth_face:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":upside-down_face:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":joy:" + }, + { + "owner": "desmos1wsk63dkefrefxpq0k0fe27gx9lcz0gmg0pll7s", + "value": ":grin:" + } + ], + "96b9855391e70dd240770c0759a32a78738b944299cefdf5d9f98586964c0601": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":partying_face:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "97089e51ef7170e306aa195ac3b72179f029ffb9d06797a46afbdcd74f21f362": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":sparkling_heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":sparkling_heart:" + } + ], + "97286eb1572e13eec950e5439d09daf814155bdc5eceab64b8ceb94ad6e2c987": [ + { + "owner": "desmos1n9l3kaexp56pdcc8ttpw4sgy3j36w8acxay3g7", + "value": ":heart:" + } + ], + "97d9e9a60ba916658293d3acb80d20fa5940116649413b0ea4ee03a8d00f6d2f": [ + { + "owner": "desmos1ljmud4fjt766cneaz2xverm8rdlej20fhn9ejf", + "value": ":heart:" + } + ], + "9a7d7e633e95299d8c171be1c4b80e2cc2f59ad4f7e6ed18a55a43d719ef9878": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":joy:" + }, + { + "owner": "desmos1lzlfh4z6qz6630g05ufz9u2psm7tvqdap6k7dy", + "value": ":smiley:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":face_vomiting:" + } + ], + "9b7281eeae1fd3e7ce69e9003ad21e5a4e7f0e6a9f79c938866f779ce17d396f": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "9e8415d0f28e1cb499cb9b3ff95df55ece402b1b55c2292fdce5f9246cbacea2": [ + { + "owner": "desmos16l0xmm8teec49rk7q6wmrg95jqrpj87y7at7rc", + "value": ":heart:" + } + ], + "9f987ed708effba136abfb2c62b2891920dfa72d23b74086fcc5364ccaf084c5": [ + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + } + ], + "9f994d21e7a95c4ad1a8ecd2ee379fe692055b9786df6b2c36968ba795df0da1": [ + { + "owner": "desmos1nemxzd4x2djvm6vdt7w8l0ahy3fsr57pe65vxj", + "value": ":heart:" + } + ], + "a0c47fc628c01e0d492f9ba50e8c01fa1a033f8c0f43dca477eeed21bc80a088": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":upside-down_face:" + } + ], + "a1eb056dd3b58709c0351e27d3776596bc887626e4c50cb127d21222fd08de1b": [ + { + "owner": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "value": ":heart:" + } + ], + "a44c9fb9d8620a0889ef749a1baee27be6f20812bef9024356758ce71827ced9": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "a49893b26f9597be32da68b5bc645c62e03c1ae23204f80aa2db17762893a00d": [ + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":laughing:" + } + ], + "a7fb7a1bbb021c85827280fcc8cbc5e2a6856a8788c22b18772b611be57a1424": [ + { + "owner": "desmos1gmu4uevcvwfcuu43yp27gcv4ngxuh9sxfpv3er", + "value": ":heart:" + }, + { + "owner": "desmos1mzwqlssv36gca9dfs4s837lnp7hcczqgswc60k", + "value": ":heart:" + }, + { + "owner": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "value": ":heart:" + }, + { + "owner": "desmos1lavlnqhpka46ndvljk9kgp5v9k979csqldtfsg", + "value": ":heart:" + }, + { + "owner": "desmos1erh2eue5j88dpajapxmcyma88wxlh2rzgsa3c8", + "value": ":heart:" + } + ], + "aa17e8ef2e258f6b527d4752330eebb40659f5cfb1411eed169abb66c6575be4": [ + { + "owner": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "value": ":+1:" + } + ], + "aa27fcff461e8de14d7649aa14d56c7c9b78c29356e9c81c0ccc676654940ab6": [ + { + "owner": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "value": ":+1:" + } + ], + "aa7e8e4dbbf8a1accb4506ec10779c7698ffb6e9ab5b1cccf3194c750f36d189": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "value": ":smiling_face_with_hearts:" + } + ], + "aac72b6e578c16f042b66bc2e1712e0a2343df122a2d972ea088180a44f9b178": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart_eyes_cat:" + }, + { + "owner": "desmos19zctr7jlmdrj9hymw6633mnqlf4pw9uxqalmdw", + "value": ":heart_eyes_cat:" + }, + { + "owner": "desmos1e47r5lmctw07ywqqtxm35kurywwez7qdm4mlw4", + "value": ":heart_eyes_cat:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes_cat:" + } + ], + "ab822d65a635cbfdda18a2f3ff04fadb775696896f4ffc160098ba8e7dbff86f": [ + { + "owner": "desmos10gzach0ftnpfp7jazqvuhyxzdkjd5pnv5xuq5k", + "value": ":100:" + }, + { + "owner": "desmos10gzach0ftnpfp7jazqvuhyxzdkjd5pnv5xuq5k", + "value": ":+1:" + }, + { + "owner": "desmos1qpg3hsvmlu8pz866tspn64nmat6sgrwa982q6m", + "value": ":100:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":100:" + } + ], + "b05b1359ed78c52e4a9ff209f0a0dea6a01eda304d69995d8f0d9b3087ce8021": [ + { + "owner": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "value": ":heart:" + } + ], + "b1ca8a78b63ac5fb1c62ea1dc24e99ddd300aff4cb693596256c601dfd6bb0f5": [ + { + "owner": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "value": ":grin:" + } + ], + "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "b39056ad9c235e895520a6569fdf3edbb11769541c83ecb39364d4f510a7b7ac": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "b40ddce10b03ee9c1a740b75b56255ea6e00ee5231eb59346bef337f0a45612e": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":heart:" + } + ], + "b71bd3c8d238aa66d406086debef1616b4ab02f8e534032a2c497c30dc6c5f4b": [ + { + "owner": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "value": ":heart:" + } + ], + "b75201687041a044bce359ccb6cb0a1d354b8f828e5cc1e4d915a444c2088ba8": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "b8e870750b3210061dfe5d12af71481badac7744c48e4979e4fbce725e9ae1c1": [ + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + }, + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":relaxed:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":star-struck:" + } + ], + "b98b2b021a93f16e04031c4d4014e80aef721f859afb87030162fb481fd42a18": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":laughing:" + } + ], + "bc95556ae56b5d534e61f007b07a33047842fd0e978ec47aa0471e5cf9fe3213": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":moon_cake:" + }, + { + "owner": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "value": ":moon_cake:" + }, + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":thinking_face:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":moon_cake:" + } + ], + "bfe68c7b6e89a958b1a429d8057537073537879d68659000b6ade357455e6d7f": [ + { + "owner": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "value": ":+1:" + } + ], + "c113c1dbcd2b77e111f26d4880645dc81b4393871712d483a5498f684dcd97fc": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":lion:" + } + ], + "c259064b41b47cb0f7f57c3ae1d1741f4ddcd82316d2c21328ec0aa73b7fc696": [ + { + "owner": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "value": ":heart:" + }, + { + "owner": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "value": ":+1:" + } + ], + "c3f3e3bccbadf9ceb8eeaecbfac399cd3d49d303204861511401b0ca0fa5cb44": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "c4082b9bcc0b8627a7db9501fe205a010e910482509615479d041beb58b2cf60": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "c42b475a80e47f83085612b4bd20ab472ce67e99ef35f30d237c7e7cc16cb411": [ + { + "owner": "desmos1erh2eue5j88dpajapxmcyma88wxlh2rzgsa3c8", + "value": ":heart:" + } + ], + "c59fc8486bbf8adaeaa2648b55ef6a14f60c28dc3b136fe8bc3f117b0ad756c4": [ + { + "owner": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "value": ":+1:" + }, + { + "owner": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "value": ":+1:" + } + ], + "c600d2109cbb2cceb9de766e98298d56f50c674cdd9b33dea8274fe4fa8e4100": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "c6c615fa00c75018f330db9449b39454097e1c6a3327b45546e9747d8427191e": [ + { + "owner": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "value": ":heart:" + }, + { + "owner": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "value": ":+1:" + } + ], + "c96944fbc5e0290bbd9b535d07152987eb1df941ad310bb8cedf38c2ab47344c": [ + { + "owner": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "value": ":fire:" + } + ], + "ca54079e6c1653f1728d3c594735423a6da588c7227dce0b698cc66c433e4e64": [ + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":smiley:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":grin:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":slightly_smiling_face:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":100:" + } + ], + "cbca5f9621eceed97ba73057e92674614c6e5fe08040ad4d3d9eed3746ce754b": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "cd755a7e2c9ad845c9e86ee777d83c373469bb662bfd8ef7d3b37ae4d94541f3": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "cda198fa449ed39ecee0d4f8edb5bc6b5685e68e91747cf72b4bfd08ecc80fe8": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "cf8403745e45519d6f67e8e9f0e9cd58d5ed6d266ca752492e982b9b4bdc0529": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "d11b28a6b9f354700a3dff8ce3bc1140d4099582edef5408e93064e302ac63b2": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":v:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":sunglasses:" + } + ], + "d1975b2e949535a9424900f871ade87533ab5e4218c48bfe4728958a0162b4d4": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":sunglasses:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":sunglasses:" + } + ], + "d209fff1555aae1c048d6bb2d95a2d37ad87f34365ec250bae2a2f52efefeb69": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":rainbow:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":smiling_face_with_hearts:" + } + ], + "d326b22596c8e59ddb69726f68b775db2b81d0818e369175e0605bff94e492b6": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "d5f76a6a574bb8620f1fc9bd1da5f2d4249f89c6fd406ff9393c0ff6fdb59278": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "d6dd28b55b07f4897ec1f89f49eea72856b16ad807d47126d161ac5e53d7d8ea": [ + { + "owner": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "d95bff0b19bf5f8f00787669027b05825501243e1126c5684d5e82c516e2140b": [ + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":thinking_face:" + } + ], + "d9e05dc07ab47dfa3f30b06822cae9653fa5c671d5841e7b6a83bb20064215e6": [ + { + "owner": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "value": ":+1:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":rolling_on_the_floor_laughing:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":flag_ceuta__melilla:" + } + ], + "db1e801fa24679f9edfc092ef877aab15f39a25d04ff836977717d6806921c06": [ + { + "owner": "desmos1patn4vz7dcvj7ae5t7jje0red4jrm66w0tku8d", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "value": ":heart:" + } + ], + "ddffc6a7a1e73f7d27696ceee2db6b84f7a3067b2c744f260534b6574c9a1b44": [ + { + "owner": "desmos1rt0sdmma2mhcgq463s2m5myf5w2mcks3cr4xjn", + "value": ":heart:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + }, + { + "owner": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "value": ":heart:" + }, + { + "owner": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "value": ":hugging_face:" + }, + { + "owner": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "value": ":+1:" + }, + { + "owner": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "value": ":+1:" + }, + { + "owner": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "value": ":+1:" + } + ], + "e118fa2f999e085549f68f7b36ca86a6bd480315772cd20c8880fcb05f54e783": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "e1702bc2d8b818ba97435061bc6505c896f306de27d47870a3f94f924eb648e6": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":headphones:" + } + ], + "e22788aef84797225c7c8d8ec8d1626d427aa8b1cac0536213f0dc86b388a4cb": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":yum:" + } + ], + "e2c651aec74109c88a6bfa770f76eea368b506896c9b9c0c7532a48243bb384a": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":mask:" + } + ], + "e81ee7fdd2b286c3d092d5fc152319801ef650b4683415f2ec622071e7ca8772": [ + { + "owner": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "value": ":smiley:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart_eyes:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":astonished:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":smiley:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart:" + } + ], + "e8271575e3f8f6556ff904751f5aeed290f925de3d0517c4f60ba263ea1cbfe7": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "e9300912e39fdbb6fbec3abe1e4244d3e898822547ddc3de855c7c0ecd53ae97": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "ea39ef209a8ab2d5b62966abc8421dfb7581c687ffe79d5ed997130cbeb9755a": [ + { + "owner": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "value": ":heart:" + } + ], + "f06201439ad3326156ffadcc17263965660278ec8bc1a9e640b0e0093440b3eb": [ + { + "owner": "desmos1u2g42tlzq9jtzldkpwpr2mxcvqaqj74eenvu25", + "value": ":heart:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":orange_heart:" + } + ], + "f247706913e876b87ae0f923141823137cd136eead5da7645eef8d2f5b262348": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":pensive:" + } + ], + "f24b3cedf3d03ff878890030169b7fe1f4856832296ecbfd2821d1c2e109b88d": [ + { + "owner": "desmos1v9q6q82aas3vknhngmeletvzhlhk5jqpy2t39a", + "value": ":+1:" + }, + { + "owner": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "value": ":+1:" + } + ], + "f339b5af2c47dedf307f8f20d645bc374a2715e0dda71f6541c387ee2104bebe": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "f45238705c9108a12efbcb0f3ec8191b78baed947e80f89bd981d22b4f52a82d": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + } + ], + "f4adc73d852a7ac3bec63fea227140ebf8f6e4d7ca2e66080e27a3add6d88c57": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "f8015acf7734e551a52580b5c28fdc993b0319673c9e994c69bf11c96ef0dacb": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":heart_eyes:" + } + ], + "f8fd4708dd3d9170cf55457f439df4f868e205070f92886492b4e974410cec70": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":smiling_face_with_hearts:" + } + ], + "f913854411ddcb99b20ed600e0af04abf865b83c183d4a2cf6fadb1664e95e4c": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":star-struck:" + } + ], + "fa04c2fa9aac2e7f7e651c40bc5a098bfa269f416088bafb176309a461cba9bc": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "fcf0fa07c23cb2010449c4780e7747037b365074e1767f1694a2ab0c7058bf24": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + }, + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":innocent:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":rabbit:" + } + ], + "ff9c05b9525c75b769bf06a4def0c8346a7aa4dd393c43b9c7bcca03816a2c5e": [ + { + "owner": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "value": ":heart:" + } + ] + }, + "posts": [ + { + "allows_comments": true, + "created": "2020-03-09T08:13:35.021Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "00727e9704aceb6e10102366dcdeeaf94d063c4588cb774ba6d37a40e619b258", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy International Women’s Day! 💐💐💐", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-14T18:18:56.489519633Z", + "creator": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "id": "00f7cf78bb3e31d72605e186bcdfd11d2d0195566dbeec61d5fe59aaa5eb3f75", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hey, I can see a Dragon around", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-28T08:55:26.888Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "01b091d2495a3d2b217a8139f94079b7723e304976a9f39157d557aad6f39247", + "last_edited": "0001-01-01T00:00:00Z", + "message": "早晨", + "parent_id": "37377051b9eac59c8636d0890b2023b94b9a079633553e37e3080c9a7864db9d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:25:15.591922768Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "021fe80f2aa720b556b56afdc1932e785d6a6775e396f242fa2bab007bc7c293", + "last_edited": "0001-01-01T00:00:00Z", + "message": "One day...", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-19T09:27:46.727Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "033080f107d68155e20228c4709385167cb0dfa19c0643d46758b2690dbafba0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“What is reasonable is real; that which is real is reasonable.”", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-03T14:31:23.305Z", + "creator": "desmos1ty2qgrk0kvrtycmqcpngxt0af8hfwr6q8xfc6c", + "id": "033c4afac3342ff4dcc0a36da33a01fa9143ac43d462d3fd0ed52be1102eae04", + "last_edited": "0001-01-01T00:00:00Z", + "message": "oh wow!", + "parent_id": "86805590e6d83c6567ea9cc2f9d2c562be8b3d64cf84cf1af4decd71232b4ef9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T06:26:19.862851614Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "03aef4fb393caad1f0ccf66246d0e930a97b316d30f19c22b65b1c6f87eda69b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Coronavirus", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-26T11:33:00.260503952Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Very concerned" + }, + { + "id": "1", + "text": "Somewhat concerned" + }, + { + "id": "2", + "text": "Neither concerned nor unconcerned" + }, + { + "id": "3", + "text": "Not very concerned" + }, + { + "id": "4", + "text": "Not at all concerned" + } + ], + "question": "How concerned are you personally about the 'coronavirus' spreading around the world including the India?" + }, + "subspace": "60EB893B5B5EEB236C5600E6ED157720F5389CF9B02F5266D6863CBF98B560B0" + }, + { + "allows_comments": true, + "created": "2020-01-31T19:44:38.818401379Z", + "creator": "desmos1cf2y5687axm6pmrr9ferdt69znjpdfan0qjr0e", + "id": "040b010cd0dda604dc047a8a9c7ba0b3e4198f64cf93ba24fdb783c0bc645fac", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-05-03T11:47:14.419Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "044a81561f1737ce018b1741b88aba6eb8fe383a2514abac950fd46c55b8da97", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmV5j589CJRGAfjqM5aPkizYCmX1asPL6LiLX4X2eex57S" + } + ], + "message": "😋", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-28T01:05:25.625Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "045fb6b91da15ec1befa26b4b897a34cc30001bb00ca236d86c230bb815a4b15", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmZ6Ntm5HTV5DukGquESfMvAqXsBZzKxbk6prebTAFY5UH" + } + ], + "message": "Visuaizing IBC transfer with custom prefixes and denominations 💪🏻", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-17T13:34:18.133356423Z", + "creator": "desmos1g7mzep5lfempedgcfrytrausnt8d8w889muwmm", + "id": "0494fa871230d745bdd381ef0ca667f1b72c2bdf94f327da7369bfdd4c41a8d5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Worldgit push origin master! My first ever post on dSocialNet", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-21T09:30:59.432Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "04f419b81524f236dfbd7bf953bc365c01547faa861d530dfe0a9addfe13aede", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmZ9vBQ5JAvzTTUBSeFFf1JzsGFeaDs8VfhPMXwXKcwUnp" + } + ], + "message": "Again 🤟🏻", + "parent_id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T19:14:20.534Z", + "creator": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "id": "067bdc9ae7c2944fe7b36d119c16abb195e4c7bb1b62e1afe495d2c5fff98f84", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmPWV8rSbH3R1Pgf5m6bZ4cDzBvupDYyKbY5QCg7USkd7x" + } + ], + "message": "old coins", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T20:52:29.149479555Z", + "creator": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "id": "07571c002e232135526847f20f3bf817b1129c1132572b47fbd44116814d6e7d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-20T12:45:51.376Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "07ffb96fb932a817e08ec58673fdd4ad129138a647e14373670674fd2a7b99d9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "2", + "parent_id": "19c7743df7971ad74115bf3a7f0e5d1b551de330de3dc08e521f8825cc31be0f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-30T02:23:39.03384Z", + "creator": "desmos19lt9fwhrlmmkwjkpcmecxeen8lhag555xhfyg5", + "id": "086ff8d0f275a0c54e871c54045254cbb029ba684d70826c516c75cb90a0195d", + "last_edited": "2019-12-30T02:29:44.03384Z", + "message": "Hello world, this is luckyfor123.!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-24T16:34:40.322Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "093a6057e15d3990d8cc769fbcab978ee997ac3330f709f0b37cd3a88b0d4046", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy New lunar year to everyone 🎉🥳\nKing Hei Fat Choy! 🥮", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-15T06:31:18.918Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "09e8767f04f1983b05ee56dadd739e6787b2a84e8d7493106d067bb04b0bbd3c", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.desmos.network/ipfs/QmNMBqqizMRs6y44truq466oEBYasmKHDr9cjewoQTR86Q" + } + ], + "message": "Mooncake looks so special among all the social apps. 😎", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T14:43:19.332Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "09e8d0e8e36b109860d6e6214e51f0d1b68af627e8f39ca4811db194207f7216", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmURekL7BtwoK8gGRokKAemPGJEXvmq3qRDTW43GPPFit7" + } + ], + "message": "Burgers from scratches #1", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T09:11:05.088504215Z", + "creator": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "id": "09f9cc17d6a7c534dacea4f9bc188d54d20d86159e08a266bf4d6aa99881a777", + "last_edited": "0001-01-01T00:00:00Z", + "message": "The message to the world from Breader... ", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": true, + "created": "2020-03-30T08:38:51.782746208Z", + "creator": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "id": "0a9beb5735ff7cf986f732e35e24206b53d2b10d98ebe6663d68a0351eeaded1", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmQu58McLQktGJvYe3rQXmvRLho9ZtFksXhLFsxuvWcbdM?filename=cover.jpg" + } + ], + "message": "Desmos Cover", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2020-01-17T07:27:26.086Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "0adee0963051bf6631a3f98fe55042c8e0eba1fd2168be6497484546d432c951", + "last_edited": "0001-01-01T00:00:00Z", + "message": "asdasdasdasdasd", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T11:19:07.911Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "0af5b98efda9ffebe78035e7882d2797dab52f8c5140e7d8d9c4c8943882c28f", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmRudB5obsJbrYWxAwg5Y3YSuX6rJga6Gs9u3W9EF3QtPm" + } + ], + "message": "What do you want to see next?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-17T00:44:36.534Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "0b6ec64aab1bf4ca15e3873eef417e82f32ee5c5b22532752d9e2a328f1b5446", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What doesn’t kill is makes us stronger.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-18T11:15:17.538157325Z", + "creator": "desmos1ar7ptckh355skxcwfl7zne8krnezp53kllyepl", + "id": "0ba5017c85961e62b8b936f60f52277b4417838254153aad3b0cc29937a6b50f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "post", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-20T07:33:10.790016411Z", + "creator": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "id": "0c2217ae74dc637b37003073ab4d500de9c2a59bfa92092a8b22252f5e8a7c03", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Test", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-22T02:57:44.205Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "0c2e8316058d55c48750219e38f37538173b69d33e93ddf9eccd6248ba5dcbc2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T12:46:24.719394021Z", + "creator": "desmos177jmcjpa02ruc6m2lt82583lrnv8eck25msr3l", + "id": "0eec49df8b263286b6d21b9bbfc88bd4fa014d91b2716d10eba00c43b43ca759", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos", + "parent_id": "", + "subspace": "2d50764d0c9f25a1e3285602db08ab8662da9b4c5b09ab09ea776b763b375983" + }, + { + "allows_comments": true, + "created": "2019-12-20T02:13:49.03384Z", + "creator": "desmos1zk3ms4n0x8h98axwm4tflkrnn4mmy8u28nnmfd", + "id": "0f4b0ffe25896f08fc221e79ab4c7b9490fdff32a0d3894e20bb7f417117484b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": false, + "created": "2019-12-27T18:54:49.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "1135e97293cc3afb47cf7b6bb20868b34ab5a3fa5573a15f7f3d19f8d593c220", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Let's achieve this together!", + "parent_id": "68e2dad01c64164b7187615e0fa569792d65a7155d8f0456c6ceae6e69612fad", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-03T14:32:59.532Z", + "creator": "desmos1ty2qgrk0kvrtycmqcpngxt0af8hfwr6q8xfc6c", + "id": "1190e6b782ac611e0286e84fa87dfe664bb2ee6ee8380d426fc7adab64487305", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing testing", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T17:39:13.024Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "11b491a237c7f1555291f8eeb1b67abc7f8b0c12793f18e3c5cbc321b89b6ea2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "ship hope (but make sure it's a working version).", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T15:41:15.593Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "11cee369888628b5fb8b21b68b37a4ce634c7061522c4cf0475ba4d09d2efaa5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What if soy milk is just regular milk introducing itself in spanish", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-24T13:59:52.914Z", + "creator": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "id": "12bba6721738efdacd376ba556f56b660814c8cb37ab80a3265e8ba079c061c3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Woho! I'm here for the cake too! 😍", + "parent_id": "4618b62d42062df82a025ae0ed71829ba5c93523bbb99b3bed8c042099fe06c9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-08T11:17:17.132Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "1345c6c48fe383290d907e053c4fd48f09efc18beb24e623d0ab7b00ee6082e7", + "last_edited": "2020-03-10T04:35:21.527541Z", + "message": "Happy International Women’s Day!!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-07T09:29:19.417Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "13ba624c0ad6ffea3d3d492b4c68e3d8f3643ad097fe8a5ae92d63e1d42f7d22", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Are you ready for some news? We're preparing for Phase 3 of the Desmos Primer program! ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-27T10:35:07.791Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "141e5bea03a282ecf97b9832b56d05cae252c8e57fec76dc62108d23a4cda652", + "last_edited": "0001-01-01T00:00:00Z", + "message": "doxxing myslef as twitter.com/gadikian", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-14T05:13:39.873Z", + "creator": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "id": "14ad7302350e596a757e305b0e3f274d84d2b5e39a5bb10ddaa2d2697aa41048", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmNMW2ovw4H9U7o4u2xDUo3b1dj488fBeZ5qNbSGQEyjWj" + } + ], + "message": "Stay home;)", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T15:10:02.143Z", + "creator": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "id": "1526b6af39b22c550c768610b4672b3ba72fa9da7dea76759899a41a81031758", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy birthday dude", + "parent_id": "264bdedcb20c712b07f6abb7e81408ba3d08967452164347e46afdbb81f8a722", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-02T05:23:24.976Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "15cb5942ad200fe3530b8a9ff2f6ab6a5eb60164db98844919a6599bed7bf402", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“if you set your goals ridiculously high and it’s a failure, you will fail above everyone else’s success.” - James Cameron", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-07T09:35:14.629Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "169a4be555a73875841af61a2779bcba1cf667d9e2ab04c26f17c05eb1e3e854", + "last_edited": "0001-01-01T00:00:00Z", + "message": "歡迎歡迎!", + "parent_id": "891e9102e4784b42c2eddfcdfcd53405c943ee6c3348c9fd813e6bbd033071c4", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T13:41:44.701Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "16b5390b68a79b54aed05ab62929e04c44f11fe5b949c0bf96351714ad8bc79b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What’s the first thing you would you do after quarantine/social distancing? 🤔🤗", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-30T14:51:29.954Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "16ce04bcf0e1a720045c74d66ee055351bace22bf91d880f507f32eca3843a52", + "last_edited": "0001-01-01T00:00:00Z", + "message": "lord of the rings!", + "parent_id": "2c49c15e4851797147b3cd48ecfd1b3f1e31afd4e77b607bd6492f310022f77a", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-28T11:19:29.03384Z", + "creator": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "id": "172fb00864632bb4dcae5285a5a0dc88694e481655ff7a3ce7f302f20daf6af1", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I wish a favorable development for the blockchain industry in 2020!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-20T08:07:49.03384Z", + "creator": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "id": "181589070d27efc79b9de090cc69f0b2e0586dd409589d635c03b89f6156966d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-08T13:11:13.215Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "189ff858bf24feaadb331dca4a185c3332e3f931a148dd1683eac871cb15ed34", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Well how many women are using Mooncake? 🌹", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-21T05:44:33.429Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "19112db27ae54716a0d6538e2fef371d018e421ec7a715b438352657c721aeaa", + "last_edited": "0001-01-01T00:00:00Z", + "message": "-Men", + "parent_id": "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T07:58:14.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "193c5b9e414e5ae183c0915a97dd7a309aac512df1d975aa64381310f4f39e63", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T08:51:32.262217" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-20T12:39:02.855Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "19c7743df7971ad74115bf3a7f0e5d1b551de330de3dc08e521f8825cc31be0f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "2", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-22T05:20:24.03384Z", + "creator": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "id": "1a0d2ecca7fa33ca2f23dbdcd358fcb8d31911eb436a058d374f94b592f5779c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi, I am ak", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-05-01T09:44:39.178327571Z", + "creator": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "id": "1c9d3c4f1dd026546e115dad613e3e75853151f6a95d50e2237c199530996103", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Try poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-05-02T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "BTC" + }, + { + "id": "1", + "text": "ETH" + }, + { + "id": "2", + "text": "ATOM" + }, + { + "id": "3", + "text": "DSM" + } + ], + "question": "Which crypto you prefere?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-03T05:51:09.256Z", + "creator": "desmos1y6afr4cfvrmf0ws076g7yh5vdxswej4ahcvdl8", + "id": "1cff2d6923d256c8acf9ef5b8461d5d63968f26d169e6d523c725289122a2496", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-12T20:06:17.544326406Z", + "creator": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "id": "1d3d82c03c623e924808d0c93b25cab75ca229e121f769a45f0095385ed2bff4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Desmos", + "parent_id": "", + "poll_data": { + "allows_answer_edits": false, + "allows_multiple_answers": true, + "end_date": "2020-05-01T12:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "No" + } + ], + "question": "Desmos token?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-01T14:58:27.215950078Z", + "creator": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "id": "1daac98f2872783eb8a2a443c438652f5a5b99232bc4eed84be83287578e7891", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "coffee/jpg", + "uri": "https://ipfs.io/ipfs/QmVsK1AmVw6vkpVkw8XB4L2hhWQcPf5uAwKeUdXVJadn2N" + } + ], + "message": "Coffee", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-12T09:27:35.082Z", + "creator": "desmos1qpg3hsvmlu8pz866tspn64nmat6sgrwa982q6m", + "id": "1ded52064ac9537db836dbc288b7cd95851356d4a87b05162aa0483451b864b1", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello Desmos!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T12:54:19.879Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "1df8229ada2aeb6f31de5ad9d99d346fab6e1ca6467b0dd7218db33ca6590889", + "last_edited": "0001-01-01T00:00:00Z", + "message": "looking good here", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-27T12:58:14.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "1e59342d01084f6c3e40cf7a23900e4d388c5ff7536f5104ee00b2a08d956a5d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "There will be an endpoint with search query soon. You may keep track on this [PR](https://github.com/desmos-labs/desmos/pull/57).", + "parent_id": "471b9488ac573227538e2fbe6c522f74996f50266c491fea871df1a8ad7c8be2", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-23T15:27:47.199Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "1f34d4366495316a2f44c648d3637f6c5362dabaab6a6ab19fb88b65847b3e0a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hi", + "parent_id": "2955bece0e7e582ca0fc5ed5ccb652fb810ccb2167fc9059fc08530f709a896e", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-04T12:15:49.617Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "202bd3f692273d69f5561574e04240e82d7b541f90e76f8327a6dbaab62b8890", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmbGGiJCVJi69uW4ikcmagmL1LCCdtGYoGUy2D6xwZ7WE1" + } + ], + "message": "do you agree? 😋", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-17T14:00:35.015Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "2030b1be95783e9002be686eefa4e50ee34125445d064f17d3f59c14b7fcc807", + "last_edited": "0001-01-01T00:00:00Z", + "message": "do cosmos projects consider themselves web3?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-14T15:12:03.315Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "2127c22bf7b9ef01aa816f17e4c52a03e3091c2ea2e8650e2c112ba137c9f1a8", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I think Mooncake is going to be so much fun 🔥", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-15T21:52:00.329Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "21750baf785ab0e769cf326aad4a45c6f1a787603ed37a99e122e6ddb04d6103", + "last_edited": "0001-01-01T00:00:00Z", + "message": "For everyone using the Android version, go get v.0.0.11 as it adds the pull down to refresh mechanism to the posts list 😍", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T05:03:11.446Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "236e53f167fd9579815d06c59654455a81dd6dd0286cddaba88d5edc7e37b507", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🤣 we have the same thing in HK. All the quotes are claimed to be from Lee Ka Shing. ", + "parent_id": "ca54079e6c1653f1728d3c594735423a6da588c7227dce0b698cc66c433e4e64", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T12:08:00.099Z", + "creator": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "id": "24894e8bcf4c8dddd1dc66f3597981dbdfd7f44c1a15afac96e0f622a2541c6f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "dhehfh", + "parent_id": "a49893b26f9597be32da68b5bc645c62e03c1ae23204f80aa2db17762893a00d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-22T18:10:28.66244973Z", + "creator": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "id": "24a740ac41e92e812470781d3f74f4819c035e58bcbc8e385c353902774a7554", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World", + "parent_id": "", + "subspace": "6ff67fe04c7dadd1ad005667b49d01980d561a2c6941ad45dc9b2e8181c89497" + }, + { + "allows_comments": true, + "created": "2020-02-27T10:34:47.303Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "24d80c82b3c05b97effe71077cc1d2e2c566058752104a81aa03292a50ae556f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "link turns blue, but is not clickable", + "parent_id": "4cb48fdecb39e736588aa342e3838a37f379b3308ccd1dc5d347ee159213cbea", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T13:03:47.973Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "257e77aaf05aa7e88c50bf9dd1398976a4e03af18ea3eea785286f4465f85cea", + "last_edited": "0001-01-01T00:00:00Z", + "message": "that’s a wonderful view! where is it? 😃", + "parent_id": "b8e870750b3210061dfe5d12af71481badac7744c48e4979e4fbce725e9ae1c1", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-18T19:48:02.552Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "264bdedcb20c712b07f6abb7e81408ba3d08967452164347e46afdbb81f8a722", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy birthday Leo! 🎂🎉🎊", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T12:22:49.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "265890cb9d0c0a0654851029610b14ec210eeed0a4db97936b531869215a0eab", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Another test", + "optional_data": { + "external_reference": "dwitter-2019-12-13T13:56:58.877643" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-20T00:51:14.03384Z", + "creator": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "id": "26e892f0d98c4b5fd57ec6bba9f750602984abf0a2b3cbc7be6301934c0b3104", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello desmos!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-07T06:58:59.303Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "27bc875bc97749bdbf327f8608ecfd5e1e3965040e6f4584e1d0c3a101ea385b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Give me liberty, or give me death!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-10T22:02:06.312631563Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "27c5a3c6a6d2daeae08b123c54afac95c5c33633c1b2e89bbe2f15c78b3e4d33", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmYf6Jz9JQDNtGjKoLzjcPLZgUcSdUJffSTmj1siFks3Ae" + } + ], + "message": "I am Spiderman!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-21T23:37:47.431Z", + "creator": "desmos1fqyt7zs5s65quung3y2amp5j8arkd9s6p6qxmz", + "id": "2955bece0e7e582ca0fc5ed5ccb652fb810ccb2167fc9059fc08530f709a896e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hi", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T06:46:12.502Z", + "creator": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "id": "2991167c52062dc0e9f3fc139c8909986da91c6b9a3d3175e180b4624408bc29", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello", + "parent_id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-06T12:28:59.229053933Z", + "creator": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "id": "2a0d06abcb5ab4b031181207518414803ed20017f4b8abba6ca31e0d9b4fcdb6", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.io/ipfs/QmUsmrn2UekS4mgj6jbXosd8wCE8wqD79cBwRq2yPL3vPp?filename=logo-badge.png" + } + ], + "message": "InchainWorks here!", + "parent_id": "", + "subspace": "b6bb3184ca517c0e1d4fbdd878a4c4194cd22599e3f2a1f48467c1d8561aa251" + }, + { + "allows_comments": true, + "created": "2020-04-17T23:47:24.164Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "2a3fe29983349f896c7ed53c6088462a089937660ecdba870738c07fb7bcd95f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Lucky you! 🤗", + "parent_id": "d96bf27e7aac3c2f051128bd743f260e3df46b1a1504a7cf922b92e24c937b1d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-15T09:29:33.993Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "2ae0c23b04fa74d9676e64b225a37ebe999260ed69137cc19361cce8b2132c22", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Are you guys ready to do this? 💪", + "parent_id": "c59fc8486bbf8adaeaa2648b55ef6a14f60c28dc3b136fe8bc3f117b0ad756c4", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:43:47.189344031Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "2b211f406c64b6681ccd0e0a1e1188cf865b3c8309ef9879d1af5d41247181c4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I feel trapped", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-04T13:19:16.694Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "2c3e717ecf813acf59db57b46891f41440ca16f465a58e9ed562a7917c3a389c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi 🌙🎂", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-19T08:59:05.647Z", + "creator": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "id": "2c46b248ab9f6ef7343191dfe089d2d4bde1a470748e061ab1d4b799a4166f44", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Bavaria :)", + "parent_id": "257e77aaf05aa7e88c50bf9dd1398976a4e03af18ea3eea785286f4465f85cea", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-22T14:41:35.501Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "2c49c15e4851797147b3cd48ecfd1b3f1e31afd4e77b607bd6492f310022f77a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It's like the great stories, Mr. Frodo, the ones that really mattered. Full of darkness and danger they were, and sometimes you didn't want to know the end because how could the end be happy? How could the world go back to the way it was when so much bad has happened? But in the end, it's only a passing thing this shadow, even darkness must pass", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-07T07:23:58.923Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "2d85a72a6138f25ff5a2d0fdc45d68a76889f574da454b5b35efcd7779e08fee", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I like Prosecco!!!", + "parent_id": "5a5862d7c66756cefe8c6260a34229ab7ea226a26080cffbc1d4b4fecd14ed85", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T09:28:04.258Z", + "creator": "desmos1qpg3hsvmlu8pz866tspn64nmat6sgrwa982q6m", + "id": "2db2d64d98b38e671bd72253ff5baee339b69e962b52a96c5333ec87bff05c8e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "my comment ", + "parent_id": "1ded52064ac9537db836dbc288b7cd95851356d4a87b05162aa0483451b864b1", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T08:46:07.242054997Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "2dd4f3e47f5a486fb4b9bb15cde7d86795cd902eb7ec15e23a981c641fb2a282", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "crypto_assets/jpg", + "uri": "https://ipfs.io/ipfs/QmW4BE2ntirw18tQ2dbagqk1rKuHhPFNjsVpzYKNMebPcE" + } + ], + "message": "Crypto Assets", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-23T00:26:34.03384Z", + "creator": "desmos1xlkg00kqf37k0uspljg4pamjdt6yjkxdzvjpdu", + "id": "2dfea9f4698434bb1f2fbf0aef47295d924991f09a0449406fd2f585a5af8a2a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "WOW Desmos", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-23T03:19:44.295Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "2e18c725c1390591e40c1c66c4a3ed9a6fe7c8a82fe62387eda217478f2509f6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Who is looking for the next Mooncake?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-27T18:07:30.923040526Z", + "creator": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "id": "2eb7823b3ce3d59ba63e0bb06d09b6a47b8f4f2d8414a3e7f6c1108fa8bba714", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmawiHgz6tx8PwJhGwAKzc43688caeYFpvu8wVU66CqBeT?filename=www.jpg" + } + ], + "message": "UBIK", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-17T20:10:11.306Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "2ebca8d1ad44239ce73692d806c62dd5cc7a53447b928e299d70b286490024dd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Do you know the story of `Mooncake` 🥮 ?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-18T04:43:59.287109739Z", + "creator": "desmos1up5dvafqg8whkf8e37z5yz47zd50fl3cpwj87u", + "id": "2ebeac735fbc1be6aa850ff98c3750aa749616a528ccb5add9c6293a11ac3f93", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos", + "parent_id": "", + "subspace": "89b95d1d9870fcec00dee38f69f2abf42248d1dabdf1f8b09215bdb4827df286" + }, + { + "allows_comments": true, + "created": "2020-02-05T12:06:03.401Z", + "creator": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "id": "2f1391bca7d9cee43ccd5e1c76a27e9b5d182536d89d1e6138098d844bbb58fa", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It's a bomb bakery....ina Dapp. ", + "parent_id": "bc95556ae56b5d534e61f007b07a33047842fd0e978ec47aa0471e5cf9fe3213", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-16T16:03:53.375743Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "3076bd5bddf2d6757eb41812d220c752baadcaaaca452202461d1b2f924bff53", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Still here! :fire:", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": false, + "created": "2019-12-27T13:13:04.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "32a1391342f6a19767d2329b4aa781c1b75465e021f3c6cac165ed7788893b04", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yes of course it's accepted! You need to escape it when you send via CLI, like this `This is an exclamation mark \\!`", + "parent_id": "38ec27b2ed048f7c2569d741817fb5fdf8fdcd386146cea2f06a1133d5ebe5a8", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-21T08:19:25.253Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "3418060eb74945f02acf413568c94c2ae192eaa24db9ffedcb3ebeb202cd88f9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Wonderful!", + "parent_id": "b8e870750b3210061dfe5d12af71481badac7744c48e4979e4fbce725e9ae1c1", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-02-04T13:26:19.172Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "34938b0b4a427664a9b496323c79fcf2712492b51dbdac33aad0038e94a04a68", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing a post without comments", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T06:17:37.532686367Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "352a133077e5b3a179b7e6cbf1ea6660a52b5ea51df276127f116bd53d0d11ff", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Coronavirus", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-26T11:33:00.260503952Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Very" + }, + { + "id": "1", + "text": "Somewhat" + }, + { + "id": "2", + "text": "Neither" + }, + { + "id": "3", + "text": "Not" + }, + { + "id": "4", + "text": "Not" + } + ], + "question": "How concerned are you personally about the 'coronavirus' spreading around the world including the India?" + }, + "subspace": "60EB893B5B5EEB236C5600E6ED157720F5389CF9B02F5266D6863CBF98B560B0" + }, + { + "allows_comments": true, + "created": "2020-01-22T10:20:20.740858305Z", + "creator": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "id": "35d7d90c264a3632203b28d453c2940f495b9f98d5277ebc6398ec641b3be464", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World, this is test message... ", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": true, + "created": "2020-01-18T23:12:38.745235775Z", + "creator": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "id": "36616f40467d40793d05a00c484f3e275da6a2c6fac0ae14c75c22deab7cece3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Ubik is here", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-14T09:21:34.946Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "3736467c59e31fd2b7bc9bdb043600cc957d59d28ee9e91476e192b28bd1941c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“Let me issue and control a nation’s money and I care not who writes the laws.”", + "parent_id": "9f987ed708effba136abfb2c62b2891920dfa72d23b74086fcc5364ccaf084c5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-28T08:29:09.994Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "37377051b9eac59c8636d0890b2023b94b9a079633553e37e3080c9a7864db9d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "good morning 😃", + "parent_id": "f4adc73d852a7ac3bec63fea227140ebf8f6e4d7ca2e66080e27a3add6d88c57", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-20T15:21:34.622Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "38b957c4324cb3402bb4ce7d9925d0d535fece27edeabd13fe200066465cd572", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmNTDt2xnQGk8BWk2VPRWt9ERRTr3qbeT2EmXNS9qFT5Dm" + } + ], + "message": "Italian's home made meringues! ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-19T07:10:19.03384Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "38ec27b2ed048f7c2569d741817fb5fdf8fdcd386146cea2f06a1133d5ebe5a8", + "last_edited": "2019-12-30T02:28:19.03384Z", + "message": "Hey there, this is SaiSunkari19.!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:43:09.496Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "3918bcdd8f81e4c4c21810bc63a10a51d9674d0a83d71606954be2a5f0e7977b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "The first decentralized Carbonara PogChamp", + "parent_id": "e22788aef84797225c7c8d8ec8d1626d427aa8b1cac0536213f0dc86b388a4cb", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-01T08:04:02.199093026Z", + "creator": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "id": "3a327cbd89f67a5a29aa4c730a46afe28e5e1ee1c038323ee98ec5eba08b6f81", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:51:12.753Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "3a59a129b85dfde470d7ecefa495c81ae483b7fae5c28fa03d5412c74e546d70", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmeWcpMGbSqmwe7sYdN5Cis4pj5U9VhPd1bLb1zUAck6b8" + } + ], + "message": "Tell your dog I say hi 🥰", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-09T13:27:47.012334993Z", + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "id": "3ae7c5153d924be522f650a0b0f08adc7041e109fc72ec2f93087b5f5e5068ca", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmUpiphnVgTVniTfG8wBPtge4obynT7odbbz7L62YyiSXv" + } + ], + "message": "Cyberili Logo", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-19T23:26:34.03384Z", + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "id": "3b5746dddc1beeda81000364994854e910457784a6a931fc5baa57f57ab749a0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Glad to be there", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-19T19:09:23.849Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "3b69f438ea55beb1a1bdb857adc22c7cac9c7744420af4264c53eb2f19c61877", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Vamos al Sol", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T12:08:04.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "3d8e5d7ace7908d3c045e03b43562fac7618a179d92bb4f7fcba0c2a707025b5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a local post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T13:40:23.382177" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-26T04:42:10.889Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "3e7bfc831ce2585a472f7a16c6ae42549d01b0b9e7114a898748a2032b4cb9be", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This Mooncake is smooth! I'm happy! 😁", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-24T10:09:00.247Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "3e7dfbea6871bb86cf371dd51ff3ad9f05c9bf762bbe6874d8c4dc106c90e0a5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "You can’t wake a person who is pretending to be asleep.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-17T08:16:34.758Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "3e85c459aebf39f2f2a48cb3da04abdf3c85d32249c66111e61f6d7af0681140", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post from 🥮 0.0.2! ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-04T10:25:11.829947758Z", + "creator": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "id": "3f87b71dd5fa6825b09ece9940c0efd5e8cca21998e5fde92bc759b6df211219", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmQS6GRmgk9Jgp57DJvYZcL7EXy8TTBfPJKmRQL2w6jXPq?filename=desmos.jpeg" + } + ], + "message": "Desmos Challenge", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2020-03-03T11:40:06.993917282Z", + "creator": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "id": "4148f70432c8d9384362e18a0b729677d142a0d36fbd588402c5aa0ea14fb578", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmSnR3NACfTXyHZztc7D1aZNB1v5CiroYmhScFXk21WKgt?filename=180831-aztec1-full.jpg" + } + ], + "message": "First photo", + "parent_id": "", + "subspace": "C292755FCD57F7284BE5962C3AB6C7F2150B6527E9D9DE56EF9317A2A20DFC33" + }, + { + "allows_comments": true, + "created": "2020-04-21T07:53:41.429Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmVNpFZHYDUQGvFM92WAxep31ftjvq9XtdKugPCB3mrkDr" + } + ], + "message": "(≧ω≦)/🌹🌹", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-10T19:07:54.579280803Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "41b9c2bc13fb40b57a4fb99000f37467b982ac78011af504df612f874276eece", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-12T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "No" + }, + { + "id": "2", + "text": "Difficult to answer" + } + ], + "question": "Is the earth round?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-13T13:42:08.549Z", + "creator": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "id": "4309738299505c01a459506da086e278d0ea958c62d5fc7f052e91cbf6754679", + "last_edited": "0001-01-01T00:00:00Z", + "message": "test", + "parent_id": "fcf0fa07c23cb2010449c4780e7747037b365074e1767f1694a2ab0c7058bf24", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-21T22:36:14.03384Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "434001acd4cf08c7da7911df697af6a238fe6575beed1a072ec6de154a16344a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Merry Christmas, all!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-26T08:14:24.783200913Z", + "creator": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "id": "43783290788fc41bea6673c3fe815f735ea6f7c6c84c14784e742bc94942f637", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-22T03:37:14.116Z", + "creator": "desmos16t9r5jjqczc6xrr5hjahwsmu58e6ghfng58dau", + "id": "43af5579eb26ccf06a5e5a1ce050ed21b29fcd963a9c88c02be73b1bcedeaf9c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "long live the cosmos", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-22T14:02:23.48212Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "43cd7f7ff50c8a96a04045f8e4771e359d21716d615b9d17c8de3b1c4b7f9fa0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello, human! This is a test reply.", + "parent_id": "35d7d90c264a3632203b28d453c2940f495b9f98d5277ebc6398ec641b3be464", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-21T11:18:24.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "440a0ff70ba5abb59f4217779e33692bae4715ec1f5d321ffef2099ae8c90ae5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-03T20:48:57.832297186Z", + "creator": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "id": "446f31d19ea069fa0a4f5d0651de96d1ac8e219b7c68490cbcf94dc3b0300c43", + "last_edited": "0001-01-01T00:00:00Z", + "message": "InchainWorks Poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-03-30T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Phase 1" + }, + { + "id": "1", + "text": "Phase 2" + }, + { + "id": "2", + "text": "Phase 3" + } + ], + "question": "Which desmos testnet phases have you participated in?" + }, + "subspace": "cf97572cb8b4646747fcd6ec37bd5a644e04dcd9a87b64d6832fc44ea4fea73d" + }, + { + "allows_comments": true, + "created": "2020-05-06T11:42:01.656Z", + "creator": "desmos1ms5u9h6zqqgl2n7wsy22vm0vxcn5yknpulkx8g", + "id": "44ef0b9c658b899cfd01aa559aad3a38515c5cb43a089b5169f85ba724f6dd39", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Test", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-07T09:05:00.168Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "450765445de8d8ab89b49bd899a5882aefc6e76bb882dee1923047c4e7d8d1d2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Sad but true. It’s all because of the selfishness of the Chinese government and the rich people. It’s not just affecting the national interests of China but the whole world now.", + "parent_id": "613fc3568b418879705644036b972cd0fa99cfbfc887a7416deb3136bce7deee", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T15:30:50.265Z", + "creator": "desmos13fndfmnd359up5r4qpdkgv8ewt8syjmxvmdha3", + "id": "450c0ece224df91f313f5b59a2b7f62857745f7b01bda74119b572fe96861896", + "last_edited": "0001-01-01T00:00:00Z", + "message": "there s not enough contrast on the seed phrase page. anyway, i did it and after logging in iwonder what the icon on top right is. i tap and try and, ar oh, i’ve logged out and need to type seed words again", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T13:50:29.143Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "4618b62d42062df82a025ae0ed71829ba5c93523bbb99b3bed8c042099fe06c9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Who's ready to get some cake? 🎂", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-03T10:30:19.848Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "4675d63e1d8c92937ea07096cb8df7bc9f1c74e709ce3b11c45324ae4f4d6635", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmXhhE3HMUhaB1y2ZhgyMvQjYRvH2wQBTbg4zTiWsQFarN" + } + ], + "message": "Lol", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-19T22:45:14.779472513Z", + "creator": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "id": "469a63694b6c9548d7f6183a745081b91e380de1d14aa863abdf10333ff1db12", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World, from Bambarello!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-04T02:37:03.375289432Z", + "creator": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "id": "46a862c166f1c9fe541e42e0c1c1aa9adf8aa812ec90076aec4322b25f9f59b5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-20T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "yes" + }, + { + "id": "1", + "text": "no" + } + ], + "question": "Do you want to play everyday?" + }, + "subspace": "663ef20d8f790fafc23cc580542c553135232b1cb0e71adc58b3af79147dd994" + }, + { + "allows_comments": true, + "created": "2020-03-10T10:49:40.389Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "46ac1fcfd7dff5f5c78a7fb6beef931ea6d4a32b63d5d072132841bf9679633d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It will be in the next version. Stay tuned.", + "parent_id": "b98b2b021a93f16e04031c4d4014e80aef721f859afb87030162fb481fd42a18", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-19T07:13:59.03384Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "471b9488ac573227538e2fbe6c522f74996f50266c491fea871df1a8ad7c8be2", + "last_edited": "2019-12-30T02:34:34.03384Z", + "message": "Hello world. Hey there, this is SaiSunkari19.", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-03T16:58:11.356327972Z", + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "id": "48cd7144d6c3280be5020cb8d40812894edf859dc7645c907cb9313a627f7050", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post mit Umfrage", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-13T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Beagle" + }, + { + "id": "1", + "text": "Mops" + }, + { + "id": "2", + "text": "Schäferhund" + } + ], + "question": "Welchen Hund bevorzugen Sie?" + }, + "subspace": "e73be83466599b149ef5351e8eaac1bf66281c5a603fc55dc859274fdec925c9" + }, + { + "allows_comments": true, + "created": "2020-01-20T12:37:29.422Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "497909425ea58a30e4c0693b539061ef1f61e5332931709bcd120f6ffd3b0a94", + "last_edited": "0001-01-01T00:00:00Z", + "message": "1", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:21:28.645901948Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "49af88296e8269a909e6d9bb37c34037ee86baeb17235004a5ee97882e6383e3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is taking so long", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-01T09:18:48.905Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "4b6629a4f4169e865b26b97feb30ceed52fa214fb12341c496e9154ae0373e58", + "last_edited": "0001-01-01T00:00:00Z", + "message": "When I was small, and Christmas trees were tall\nDo do do do do do do do do...", + "parent_id": "b40ddce10b03ee9c1a740b75b56255ea6e00ee5231eb59346bef337f0a45612e", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T11:28:41.869505647Z", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "id": "4c3005016d2cfe2549ec64e4609e475c0f7686c8eda088b946fb694757b5a3ab", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmaKnZ1CcBwR1NpoREqQMLcqCWdTamSsjUwyauYmr3Hs1K?filename=blockchain_network.jpg" + } + ], + "message": "Future is already here", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2019-12-11T08:07:39.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "4c78b0805ace9f7812ab6274be193a8bdd92e57618ffece41787bd4d695c9c3f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Welcome to Desmos", + "optional_data": { + "external_reference": "dwitter-2019-12-13T09:11:41.036114" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-27T10:32:32.636Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "4cb48fdecb39e736588aa342e3838a37f379b3308ccd1dc5d347ee159213cbea", + "last_edited": "0001-01-01T00:00:00Z", + "message": "yeah okay it's just SARS+Ebola+aids \n\nbats, I'm sure. \n\nhttps://ipfs.eternum.io/ipfs/QmeDTdU2UWCXnexd1yvY8sPJMZdt6gkjLmSh57XkgaWAcz", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T18:07:08.997Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "4cbcec8615dd6cea250629b8b585588ff0aa9c640ac63de6b4701029a9b5cd74", + "last_edited": "0001-01-01T00:00:00Z", + "message": "rumors can be propagated but stopped by wise people", + "parent_id": "e73d391ee8e0daec8378747ccf1ab947d489182bf172496a9609492cebbe67a0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-02T14:16:24.254809591Z", + "creator": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "id": "4cea3a170718b2cb9867bc50f7d4c9f2318339263f1bea94e09690a16cc13149", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "Absolutely" + }, + { + "id": "2", + "text": "Definitely" + } + ], + "question": "Is Desmos a great netowrk?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-03T13:07:57.559Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "4d73e10a5772a1bf4a467888f176a16c2388d23f49c8dde80c52da9b473ae03f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "that was much fast! my Mooncake is alive!!!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T21:21:00.589Z", + "creator": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "id": "4db5e08a4243cef25bcd8c76d81b7d5518f0f3c81a8eda1b41d4aa5bccb8d866", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmVu8oZmi3qgWokZBrAtjMGcv4VrSNXCiUCUbRFTysJ2Rd" + } + ], + "message": "how about some kilos of Lasagna? 🇮🇹🔥😏", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:18:34.887Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "4e58d27ca79d7a6fe115b1165010298c5fb9753d70e91b476ed8437466bfccf3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a test", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-15T10:33:19.982Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "4f5f4e36ef510417471d7c78d18be3a5f544e80d0cba43fd0b72185916e101f6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello!", + "parent_id": "086ff8d0f275a0c54e871c54045254cbb029ba684d70826c516c75cb90a0195d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-04-03T18:34:34.382298745Z", + "creator": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "id": "4facff6e76c408f0a98f23654547703ae609b01b80527eca4608ce3869969e4b", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/Qmc2AL4JkPRe62NH9XoxbmnYskVh96WX9w7Kz6HTAN5tzG" + } + ], + "message": "I am King!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-30T01:02:54.03384Z", + "creator": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "id": "4fdd46ccb4b1c2ee761968a8d59ad5396959264ee1b1b968da38c429780fac0e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-10T07:30:31.544Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "50dcda9d43bd92b40f047c4905eb59840d0c088fdcc40ffc563a4366296ae501", + "last_edited": "0001-01-01T00:00:00Z", + "message": "You may create a Poll", + "parent_id": "189ff858bf24feaadb331dca4a185c3332e3f931a148dd1683eac871cb15ed34", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-20T07:34:26.620376946Z", + "creator": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "id": "5167ad329eafd39296e0613c6af76f902668b19cbf6c9e1ba3a4da8ff3b74969", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Dummy reply", + "parent_id": "613fc3568b418879705644036b972cd0fa99cfbfc887a7416deb3136bce7deee", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-12T02:04:28.117Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "517f74af9ac94c1cdac62b51186d757b708a823c9d60676ddc3c6cc3f8186c9c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yeah. Complexity will create barrier for new users to join. ", + "parent_id": "ab822d65a635cbfdda18a2f3ff04fadb775696896f4ffc160098ba8e7dbff86f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-31T11:07:38.446996026Z", + "creator": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "id": "519213999810445110bdafb80a6b5c12dea3cc0d3a68dd1f972fb5816c4eebdd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Coronavirus", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-05T11:08:00.260503952Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Very concerned" + }, + { + "id": "1", + "text": "Somewhat concerned" + }, + { + "id": "2", + "text": "Neither concerned nor unconcerned" + }, + { + "id": "3", + "text": "Not very concerned" + }, + { + "id": "4", + "text": "Not at all concerned" + } + ], + "question": "How concerned are you personally about the 'coronavirus' spreading around the world including the India?" + }, + "subspace": "B0E752557545591C147EEB4AD1E5C40C48A7CC1155CC1586EC3E07E874A95099" + }, + { + "allows_comments": true, + "created": "2020-03-08T05:40:41.756235054Z", + "creator": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "id": "51c7f17dc7342451e98b2c0f143a6930b22a6f95e443c24f966071a57886c48b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What was the highest price of BTC?", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "20000$" + }, + { + "id": "1", + "text": "10000$" + }, + { + "id": "2", + "text": "250000$" + } + ], + "question": "What was the highest price of BTC?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-29T12:55:37.306Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "55247d5cc84e8817a97379ffdd870de8e29673688735f64623b1e020c077a4ab", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing comment on the testing post", + "parent_id": "0c2e8316058d55c48750219e38f37538173b69d33e93ddf9eccd6248ba5dcbc2", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-30T02:27:31.878651079Z", + "creator": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "id": "5613ba6047ecfe017d63b0ec400f12e27708f77b6a369c9b80474bea5c74df4d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2019-12-11T12:45:09.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "566d32835a978c993e686fa20fad30c4d9491bc14a2f2a1a5e9c89db38d0cfc6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Tryout", + "optional_data": { + "external_reference": "dwitter-2019-12-13T14:21:37.998833" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-06T14:39:37.544819963Z", + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "id": "56ff9b0ba29fee2460130ad841d78607f5d825f8e169679e018a75218501c3a3", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.io/ipfs/QmaAN37h1RErvMmdBrsX7bEuRxN6vjUNox1jR8gKLZfPbA?filename=testnet.png" + } + ], + "message": "New testnet coming sooooon", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-18T05:32:45.166162902Z", + "creator": "desmos1amff90quajzsl4929t9dmqyplkqu5efmtcc6pc", + "id": "57b8bdcce250124a0e1cefd56f0c7eae6e377a6ee2afee4f292a0d879570e931", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos!", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": true, + "created": "2020-04-16T14:23:05.715Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "581845695dad7c2950eee1b9908e1567f500d625d9343348a5363f99a1c6122a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "you are very welcome!!", + "parent_id": "aa7e8e4dbbf8a1accb4506ec10779c7698ffb6e9ab5b1cccf3194c750f36d189", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-19T12:41:31.585Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "5844e8f8c37a93a5f4bc3115e553e4ad707e324d6c4c1b98ffda9ef9ee5254bb", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing again", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T08:32:48.360004178Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "59235f11dac3f7af2237ac1a325e4fb216fcb753f8f6c4ca71f004286bc1dd22", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Crypto Assets", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "0" + }, + { + "id": "1", + "text": "1 to 5" + }, + { + "id": "2", + "text": "6 or more" + } + ], + "question": "How many crypto currencies do you have right now?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-23T20:54:34.03384Z", + "creator": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "id": "59805b9c4a4384a5d305bd02c7f847b3be04ab2df24985d9e49f5b435a6b62b4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-23T09:44:49.732Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "59b2c45b56dfe98a4f181def79e5a404a86d731bf9ddee55cf6d3aa345a1a571", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello guys! Nice to see you here! 😎", + "parent_id": "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-06T15:41:17.054Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "5a5862d7c66756cefe8c6260a34229ab7ea226a26080cffbc1d4b4fecd14ed85", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmQV6zYGx8g1CUjQ1pcT67ZtqL7QRp9NpvrntiLj2UT3g6" + } + ], + "message": "Ready to bottle Prosecco Wine! 🇮🇹🥂", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-02T08:03:03.783Z", + "creator": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "id": "5afe57f19645ace0e9bc489d192dfbf8bdc06ab8fc84eafee5c08fe1828fe81d", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmbxjYoHVduGSPZRuwxNJWRuoF8G81hVx1zMon85yZKsok" + } + ], + "message": "join in! \nhttps://primer.desmos.network/phase-4/", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T14:13:45.402876365Z", + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "id": "5cc924a902a98222a2f51871d59f8c6afeb08b011f90f224a0b10d2e1232c969", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Greetings from Germany", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-16T08:55:49.528507268Z", + "creator": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "id": "5dcf020aab00542a99c123fedcbbf2c83bca0a412a9b7179bfe1d11d387817b6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-28T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "No" + } + ], + "question": "Will Bitcoin reach 20000usd in 2020?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-14T06:04:02.451Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "5ecbd6276d7f6b86308bb68cf113306177e30b56564596ceadacfb5b27e08bf8", + "last_edited": "0001-01-01T00:00:00Z", + "message": "And stay healthy! 👏🏻👏🏻👏🏻", + "parent_id": "14ad7302350e596a757e305b0e3f274d84d2b5e39a5bb10ddaa2d2697aa41048", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T12:12:20.465Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "5f9aeae04b11e20fdf3caae7f2aec3a0fe7622344549af011883ae1cd3d2b51a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I agree that rep and reward should be separated. rep is like a historical record but it should not influence your rewards from current contributions. I’m thinking if rep can be used to “redeem” some NFT like badges.", + "parent_id": "d204e1be53558d9d57640d0b093fca5facb50048188a4e3c476c0fa32835187f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T14:28:06.826Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "613fc3568b418879705644036b972cd0fa99cfbfc887a7416deb3136bce7deee", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Why many of the viruses originate in mainland China? A nice YouTube video here: https://www.youtube.com/watch?v=TPpoJGYlW54", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-16T18:57:29.03384Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "642a08f92b9f190e427f43a00e30832b83b8f6cef5494fcd5621450aefa54443", + "last_edited": "2020-01-02T02:25:34.03384Z", + "message": "trying editing 2", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-08T11:16:45.607Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "643f78c9084602731710be5c37b01b90c7aa1de496fc5c3a7bb53874bb34905d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It’s Live!!", + "parent_id": "e2c651aec74109c88a6bfa770f76eea368b506896c9b9c0c7532a48243bb384a", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T17:16:25.444Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "6485d8b4d1fc82896411886b32fce814112797b2f27fb683b73bb2a3ddeebd53", + "last_edited": "0001-01-01T00:00:00Z", + "message": "speak freely\n\nbreathe freely", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-30T08:05:46.992Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "64d6a0562f599a1ebf799748f2ba3c2b27e9b340f59a4d9bbd765940402e00bd", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmPKQBed922AEDThJ3pVeJPk7B4hm9z8uJxzg4v8EHZGhb" + } + ], + "message": "A good read from one of the best italian's physicist, \"The order of time\" explain in a visceral way what really the time is, making your normal time conception fall off like a house of cards", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T15:40:31.149Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "6503fef2a7553d1f16c1722bd5e9ffc385bc6a2c4924f4172ac5e022d316d0d7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Nice. 🥰 oh no I don’t eat beef 😰 So, bleah", + "parent_id": "79e103fb576a0897012b55a1b2b37b15bc0e83872324c01b3ce65e0df57e1891", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-24T06:31:14.03384Z", + "creator": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "id": "657845afdc3f029bc8b3c83e263bd77c179bff67f78ec687370ac7eef459ce5f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-11T07:20:05.211Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "6620f5a1435fa64906810b9748cb3bff863a5c6601bef76959a2950f22a0bf20", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“If you take from one person, it’s called stealing. If you take from many, it’s called research.” - Tony Bennett", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T01:25:36.556Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "66a5d9283c2b556c909b7cc998443bc31d2a1817a780939335a07be084dd3a9d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“The only thing you can get without working is poverty.”", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T12:44:28.96130812Z", + "creator": "desmos1gravcjq3t98upzlf2rn74nzml5262ln4y2dlfh", + "id": "66daae459a2c1e911f4ae234365728c0f108c2de0cad79a937095d9db3e9db33", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Join desmos on discord", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-21T09:57:28.526Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "67df057f87c9a425bfaec22d3d06eed5d7e276d2a22c9da1763b921301e6551d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "(,,•́ . •̀,,)", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-04T09:29:25.070838777Z", + "creator": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "id": "68110d51aab400b6d1ce79f465475060e5fcc6b21e051684b2afd56e48cd68c7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Start of Game of Stakes?", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-03-31T11:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "in the next 4 weeks" + }, + { + "id": "1", + "text": "at christmas time" + }, + { + "id": "2", + "text": "when https://github.com/cosmos/gaia/issues/201 is closed" + } + ], + "question": "When will the game (GoS) start?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-18T05:01:59.468007474Z", + "creator": "desmos1w8k4qyg395jkdf4lrrpkx47ncapvsszvhehdv5", + "id": "683883159ce4229b3d03e267e52b2e450436ec1b00eea909e677eed3747147b7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-29T19:05:18.737Z", + "creator": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "id": "685573a9106221eb114dc232912475866aa3602fc7868cdb86f2cfda07e82513", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmX1SbsUSHzwURKRK8xKZsq1x7p5TTJDUJfCgG4Si6cUnG" + } + ], + "message": "flamingos", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-25T14:28:30.611Z", + "creator": "desmos14jhgygqh2nf8d2hqzp9pq7z7z7pu7expen3pvy", + "id": "68795490973ad268b8c55f04a422a87ea9bc1386356883dbcab935b3c4e7094f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "have a nice weekend mooncake family 🤗❤️", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-27T18:35:04.03384Z", + "creator": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "id": "68e2dad01c64164b7187615e0fa569792d65a7155d8f0456c6ceae6e69612fad", + "last_edited": "0001-01-01T00:00:00Z", + "message": "DEStroy MOdern Slavery in 2020", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-05T11:55:06.042Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "69312b328da061fdd21187fc0965e87a33a836266ac74d6be8f7e995dce79694", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“Good artists copy, great artists steal.”", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T15:07:03.769Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "69a801fd25f75ae8cad2349ddd3481922d7ff2dbd385b809286a2a72717bde07", + "last_edited": "0001-01-01T00:00:00Z", + "message": "👏🏻", + "parent_id": "78c88265fa17cb2d75f0ed098b3289b3270f3ea07b505e12d1fd191f50f0503d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T08:32:07.491196989Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "69f5f48656eed08da77c6669ba89bbc9c3a1eba3c01518fffcc68808e2f79349", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Travel", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "0" + }, + { + "id": "1", + "text": "1 to 5" + }, + { + "id": "2", + "text": "6 or more" + } + ], + "question": "How many crypto currencies do you have right now?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-27T17:37:57.450405962Z", + "creator": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "id": "6a2d7b53a1fb31cdd57b5542aa36d91feb17a09dab6ed0a043d7cd6a704f40da", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-05-01T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Red pill" + }, + { + "id": "1", + "text": "Blue pill" + } + ], + "question": "What pill do you choose?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-04T08:46:03.372Z", + "creator": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "id": "6ac40a61ca0385da70868522fe9368c12b293456e8ea621c73082422978e7132", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Suh dude", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:23:42.242104746Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "6adf0a2476ce48e149773beb758452723ade0305e4fc2cbd363aad584b08e2ee", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Has this every worked?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-11T07:28:31.267Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "6cee81830fa2248e68892afb4bdb30c0445bb0066dcf668fe341d0b57701cb2c", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmZ9vBQ5JAvzTTUBSeFFf1JzsGFeaDs8VfhPMXwXKcwUnp" + } + ], + "message": "This is the real meaning of crossover 😎", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T12:44:51.333Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "6dce3042b92da30dd1521461ef97c8b1e8df55a2d820960fdaa7b4e6f4909df7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "1", + "parent_id": "19c7743df7971ad74115bf3a7f0e5d1b551de330de3dc08e521f8825cc31be0f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T09:17:01.393Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "6e7c47b9d0912211f4f61d3e56c81c3fdc0307d95f8286a8b0f58d391637023d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Test", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T05:24:45.067Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "6ec77ad0767442cb31d20b3cc120007058eaa2a64d25f936ed2d00bebe855664", + "last_edited": "0001-01-01T00:00:00Z", + "message": "May the mask be with you 😷", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-10T09:47:00.197Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "704fe60bff2a45d4425bb447f4404a4f8a18c653568930e977f1c2f1b93c2063", + "last_edited": "0001-01-01T00:00:00Z", + "message": "When we can speak freely\n\nWe will be able to breathe freely, too", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T06:47:45.005Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "70fd47f89bf8a0c3aab32eb9d41717c94b4f3a412845a0bdb33623062e07b14d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Alert COVID-19 everyone ! It is madness !!!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-04T16:07:44.561Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "712e7c212367ee83f093c1c95e0297513fd51d7538a89b263aa135b9de2b7190", + "last_edited": "0001-01-01T00:00:00Z", + "message": "No why?", + "parent_id": "aa6f0e3e11a5a6aefd855e2cdb7ebeb771806c0cffe75c8f5b9bb134d5a252f5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-30T05:45:13.969Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "71e6f45ee2fe7c70db6712c948f3f34f91bcf390c5474ec60218c129ea821409", + "last_edited": "0001-01-01T00:00:00Z", + "message": "dbbvv", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-30T20:59:31.588691082Z", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "id": "727a6e8bb21f50e89bb9eff1f46c4bebf15d0392dd4efd7dadb0cfd4fd1b7d9e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you for the invitation :)", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-31T09:36:32.868472386Z", + "creator": "desmos1ft37z3kv89mtc2qzyudvmhkakeyje6kuwda29y", + "id": "73e3bd28577b0db77b06985305a3ab97ca536bd0147edc22bcff86d44bc10aba", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi, desmos", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-06T14:27:31.838287512Z", + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "id": "74862c12e0cf1d5281e6f96eade704c31a8a34a010b30fc39f53cb674453fac2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "New poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-15T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "YES" + }, + { + "id": "1", + "text": "No" + } + ], + "question": "ready for next phase?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-04T07:10:20.084Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "74eae8e1c3165bea6007fcb8b01c18fffdb9d631c26175beb317016700afe3ef", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Have a good day! 😁", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T07:58:49.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "76516dcb5a0a160c631f9b070b2330c82d2a965b4e1657ad576aebb33b98d6de", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T08:51:32.262217" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-30T09:08:03.746Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "76597beaa2698925b5b30fd991d3e8f720fa1a0234ffc6549b61948917ee5bd7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Why people celebrate Buddha and Jesus birthday?", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-15T08:27:47.958Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "77433b270369d6084125107f0fa9c815dac95a7550833e9a269c6086361f6fe9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🎉🎉🎉", + "parent_id": "c59fc8486bbf8adaeaa2648b55ef6a14f60c28dc3b136fe8bc3f117b0ad756c4", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-16T23:45:01.226Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "775e87dbe5d90c1a62e8452baca6473bbf00de8851b288c70d0ef7a8af81258c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "sick kids make sad dads", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T09:34:49.193358815Z", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "id": "78b1c48557424fc8b47aa228e71e1b4b526b7efe10c63378a6e5ac828f1ac0e5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-01T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Centos" + }, + { + "id": "1", + "text": "Debian" + }, + { + "id": "2", + "text": "Ubuntu" + } + ], + "question": "Which OS do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-27T09:28:26.986Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "78c88265fa17cb2d75f0ed098b3289b3270f3ea07b505e12d1fd191f50f0503d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi mooncake's users! Are you enjoying mooncake so far? What feature can't miss in mooncake?", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-30T10:03:30.925Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "791c5b4649d2255736a55875adcd621cedfa700f26ab603b16db1b304438e4cc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Posting with the latest UI 🤩", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T15:02:30.048Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "79e103fb576a0897012b55a1b2b37b15bc0e83872324c01b3ce65e0df57e1891", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmeM3hQN4TPeCGCpVUmfm8gg4MCbjXKBv1GiMgbEQHX39J" + } + ], + "message": "Final result. 250g of burger 🤪", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-21T08:51:44.03384Z", + "creator": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "id": "7a23ef9435c62271e033902c92c1353ee6f55dc81ae5de4b7bdcee858ee04814", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-14T16:46:07.891Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "7a43622d662878cca273cc378e1b7df66d993da81a1a3bbbf61d4d2daf1988cc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yes it is!! 💪🏻", + "parent_id": "2127c22bf7b9ef01aa816f17e4c52a03e3091c2ea2e8650e2c112ba137c9f1a8", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-22T07:52:14.719546Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "7b754afb11fdb55d6a8de724bc563081ff40fa9095276c1c4ee8ef363533b2dc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "There are too many shit already. Let\\'s do something great together.", + "parent_id": "c96944fbc5e0290bbd9b535d07152987eb1df941ad310bb8cedf38c2ab47344c", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-17T14:47:15.523Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "7c161934ef3ffcef319d11c70ef123f15618a5001b03f6a6261840caf6262b59", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmRbVafQP1kY3z9QkM58DQQeuKTRsrMzNEoSfX2caDSZDT" + }, + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmTQxa27P5qeS29BkFFzSbr7Qo1rSx8JwNXpCBLtFSqkfd" + } + ], + "message": "Burgers from scratch #2 and #3", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-16T09:07:48.736106294Z", + "creator": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "id": "7c4940d2e70d549cd374132d136d270243ff8d2a522d082485ad794fdce1cb8a", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmVaN9W37Xr5J1cLCQon6CjM65uenJBsDzrLwYA94tFWJp?filename=westaking.jpg" + } + ], + "message": "We are WeStaking", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-31T20:08:27.886230533Z", + "creator": "desmos1yqe66ky0v28wprdkxucdtehentypn3svyhfde5", + "id": "7e0595fe32620e7b97c955086b7db3b07025a966ae2121c2afc4c005652b9d46", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2019-12-11T07:58:34.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "7effc492b8d496f38649afbff3d75de2ca6db7f4b3e8d67876592bf00fdef2f2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T08:51:32.262217" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-29T13:18:28.673Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "7f5c48d35729296df36a51f3ba70fb7c60096e9fd1ad0ea0f4165a83ab8c30b2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "awesome!", + "parent_id": "1df8229ada2aeb6f31de5ad9d99d346fab6e1ca6467b0dd7218db33ca6590889", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-14T05:36:51.593Z", + "creator": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "id": "8006e0b6277a2aa5e44848dc811eda213bafaf77676c7b75e868287ee9255a1c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "v1.01", + "parent_id": "14ad7302350e596a757e305b0e3f274d84d2b5e39a5bb10ddaa2d2697aa41048", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-03T18:15:56.654471026Z", + "creator": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "id": "81160ce863272960fbf5a88a831e6f0a0bcdd3c02aad3989f98dee39ac53d007", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-04T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "To be" + }, + { + "id": "1", + "text": "Not to be" + } + ], + "question": "To be or not to be - Desmos?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-21T11:22:11.642320514Z", + "creator": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "id": "8251102ef8bb5d5275f7dfb502f5bf38534b423e2837ab0b4b05f8a129509f8b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Bi23 focuses on the blockchain and crypto-assets,providing users with Staking and DeFi services.", + "parent_id": "", + "subspace": "601af7eb15aafa4ad5f927797808923d5b42a5baa2cfad5286c6831ae556c560" + }, + { + "allows_comments": false, + "created": "2020-04-03T19:32:25.52016578Z", + "creator": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "id": "825ad8d07e97409691f3d0d03dddf3e16059c7858f5538a9e7e405878aade953", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmSfcTrWi6ZqJmdSUVBejBVfMMnhUod5GJo4nbH6Uqfb2W" + } + ], + "message": "Don't worry, be happy!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2020-03-09T12:35:31.246113202Z", + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "id": "8305b8fc6ff13e124e20c06d5e39c40dc92aebfea5c3ab29532845d4608d7b10", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmT4vbm2URB3KQgaSiqA38DfxqQ8w5SVvzNEZuPBaGCDLf" + } + ], + "message": "ChainodeTech Logo", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-13T19:46:03.778Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "855e64ed5de045c872b39d250c711d56f92a880648366a0b20e5216c212b7821", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I'm excited about the just released v1 of the Status App. Super secure, distributed p2p messaging. It's eth but amazing status.im/get", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-04-03T18:56:01.520683071Z", + "creator": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "id": "857e16a104b1a7fb52eb780e2767e34fb0b069b890f71445f22b049375c8c9d2", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmY8NK6Je8y59A6fRx7mLtjSw8RpsxvowKfYEWbRusHWW5" + } + ], + "message": "It's Andromeda!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-03T13:10:46.907Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "86805590e6d83c6567ea9cc2f9d2c562be8b3d64cf84cf1af4decd71232b4ef9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "censorship resistant social media is a crucial tool for protecting human health.\n\nSpeak freely, breathe freely", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-20T11:57:14.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "869251b793f5aa8284e9e681e77da520b821712b98d3129dda3b27b75c9a8383", + "last_edited": "0001-01-01T00:00:00Z", + "message": "\u003cMessage\u003e", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-27T00:38:24.03384Z", + "creator": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "id": "870e2ac5b1dc16ab4f914aa0e7db7278539825674466ab4ef2f75843c63bb7ef", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Destroy Modern Slavery", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-30T01:03:09.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "8720cc7a0855700c1b7c6d01428b86879abbb766eb6231f9d461ccdcd94faa7c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy BC11! 🎉", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-05T09:56:24.544Z", + "creator": "desmos16narsgz9yhypm38unf48mp57y3z589d7zpcqwd", + "id": "8735c82dc59313ddaf6c72670beef2a4c0b4eb8dbd3cc5536647f7268fee9759", + "last_edited": "0001-01-01T00:00:00Z", + "message": "ssup guys ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T08:49:29.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "882577de448634d2dfd5b656438c6a4307231bf7180441912833d71f7acbed18", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Another post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T09:55:02.160257" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:19:26.557706777Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "885798844313cd170c53dfce00de9aa4b860e1a9d39c7da4aa791f1c1e918a4f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Congrats e-Money on the launch! 🎉", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-15T18:37:31.713Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "88789a0fd6eb76daa63405c7d4d59460e97b02d11fd847a3a3c6896f6dc69d0c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hustle yall!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-25T10:10:48.909Z", + "creator": "desmos1ke9fmwrs26putztkqhlve7dn2xjft6xf0acyq6", + "id": "88efab187ad26133ab4ab63e35e1643ac652aa6abb512e78c20c387023efa2b5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "q ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-07T08:19:36.901Z", + "creator": "desmos130euf9e3k4w826dgnyzx4aex3lupqee5kz5qgl", + "id": "891e9102e4784b42c2eddfcdfcd53405c943ee6c3348c9fd813e6bbd033071c4", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmYX3JsWeN8g2Zm2LLZEHtfnXCUb6VrKJ9X11AwhjL2kna" + } + ], + "message": "劳动节快乐۹(・༥・´)و ‏̑̑", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T16:47:49.397Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "8b0469dbc9887c3b89212561ab95ad660da88326ac79e2c4e03f79e536029c55", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you for reporting this, we will try to fix it in the next release! ", + "parent_id": "450c0ece224df91f313f5b59a2b7f62857745f7b01bda74119b572fe96861896", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T10:01:32.474Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "8b9dd5515fbb5dfcfdceab40c0dd54255784a4e286b47e24b4011a53cec9e581", + "last_edited": "0001-01-01T00:00:00Z", + "message": "a", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T20:50:28.881751157Z", + "creator": "desmos1e8xaajgc0l5ftl5m5x390hg0enwjyd5pfyuf9g", + "id": "8c29b380549f3a6093266bb5f91016455ccc255ab735879e0887d7cde5937a0f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "👋", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-21T05:43:13.446Z", + "creator": "desmos1g4kc5llwyq3y423fa0gcy64rz4h58e36k4lc8e", + "id": "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92", + "last_edited": "0001-01-01T00:00:00Z", + "message": "X", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-04-03T20:06:20.490071607Z", + "creator": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "id": "8ce55e456f784fbd1312c6f2e7ab1af60d9f319eb36759c8d2c0ea73bfd27d67", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmVABgWakX1Bds515zfcPWwrW9pLCVaNHoYnL47e1kSnxn" + } + ], + "message": "Cat!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-22T03:37:42.682Z", + "creator": "desmos16t9r5jjqczc6xrr5hjahwsmu58e6ghfng58dau", + "id": "8d7af22f8907efd735d7bbdccb06fd58ce05ca0c9dac53f9e227a815cf00d646", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hi ", + "parent_id": "2955bece0e7e582ca0fc5ed5ccb652fb810ccb2167fc9059fc08530f709a896e", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T14:19:24.893Z", + "creator": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "id": "8ed9bc5d3079cdd9255e07305db5a02c2fd808df2cf662ba034128041539e561", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmVzrmb52WiamxLmdpY495cV1Bn5VbeRdeu6GJHECfqTgk" + } + ], + "message": "big picture testing", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-27T19:14:59.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "90b49a94388deeb7d01febd91885c7c99d10c6270dc649d865de34a02d851342", + "last_edited": "2019-12-27T19:18:04.03384Z", + "message": "![Welcome, to the real world](https://media1.giphy.com/media/JzzLFXnZt4aiI/giphy.gif?cid=790b7611db5de6f71c4798f6f21ed61e9d5ae261d6156821\u0026rid=giphy.gif)", + "parent_id": "68e2dad01c64164b7187615e0fa569792d65a7155d8f0456c6ceae6e69612fad", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-16T20:18:44.03384Z", + "creator": "desmos1mzwqlssv36gca9dfs4s837lnp7hcczqgswc60k", + "id": "928064ac74fd935819f95348c41ffc4ddd89fb0bf7ef436c8539c8ddf6de59c4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-27T09:04:06.566Z", + "creator": "desmos1n2m52yfq4hmk4e9p9493c28nt4fy4sqxvehxvf", + "id": "92e5797e81fc0652a071cc37bb54726602275716fbf928df45472ef314283a6c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "tFaf卜力翻F廿", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-02T15:15:55.603011707Z", + "creator": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "id": "9305e7e068d27c2fbef711221bfa12201ecd5d836fc21a0b50b3ea809852736f", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmbW4rRxm6TMD7dyb1VvF5tD9AH8UwShrmVphTfXiD2bgz?filename=SimplyStaking_desmos_image.jpg" + } + ], + "message": "Blue Orange", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-30T02:23:19.03384Z", + "creator": "desmos1l6ayl3wcvkpr5yn5a3tgqp3jv60quyxmrph2q0", + "id": "9412ceaa229b01dd9a291269a1678a4b46b0c88746565c7c72af39aac5741f8c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "dubito, ergo cogito, ergo sum", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-20T09:24:33.724Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "9499ab028566eefd3f878cb0f93f90bc9370de057dde8bf232b4c383984b82d6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "T", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-27T10:46:23.979Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "9525d4755f622f5862da632d6ca4b1e9a118399b4296f9f8f2b58fe1e54a7475", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What exact", + "parent_id": "a10878ca7d7cb317449d3c44bd943e24f360f1d79065f6961a665e343be9f47a", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T13:47:06.891Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "95e0f2ed5e4abb2c3f681332ce99cdc501c6c5260e609c11f5658ab0f6ef9f76", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Mooncake v0.0.13 seem to have some problems 🤔", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-31T11:29:27.579976563Z", + "creator": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "id": "965b0632c8915064e504e0f9455b9d37e0b22e966bb373f90f54ff2d41dc238a", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.io/ipfs/QmePw1dXoaQ5VKRJTyswoW7Ji6SCnZ5p9sikVza9uapnP3?filename=cosmos_birthday.png" + } + ], + "message": "Hello World", + "parent_id": "", + "subspace": "60EB893B5B5EEB236C5600E6ED157720F5389CF9B02F5266D6863CBF98B560B0" + }, + { + "allows_comments": true, + "created": "2020-03-25T11:09:38.883Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "96b9855391e70dd240770c0759a32a78738b944299cefdf5d9f98586964c0601", + "last_edited": "0001-01-01T00:00:00Z", + "message": "dark mode looks good!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:20:48.401Z", + "creator": "desmos1muhg6t3yu0utfgde8tsf99m9t0nu57cd9vvmjf", + "id": "97089e51ef7170e306aa195ac3b72179f029ffb9d06797a46afbdcd74f21f362", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Free Tibet", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-22T10:12:41.071453006Z", + "creator": "desmos1n9l3kaexp56pdcc8ttpw4sgy3j36w8acxay3g7", + "id": "97286eb1572e13eec950e5439d09daf814155bdc5eceab64b8ceb94ad6e2c987", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-30T16:20:35.623Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "974d32500dd6600c5502da8014958478a1d257163112bc3abee937f6827187c0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "If they are believers, why they celebrate? Buddha abandoned his home and statues to make himself forget everything in the real life. Should people even record his birthday?", + "parent_id": "a81a220b942d45c2e88814bafd68fd71ae7ee3191b00dfb275694f96b9a92fd9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T11:40:47.196530755Z", + "creator": "desmos1ljmud4fjt766cneaz2xverm8rdlej20fhn9ejf", + "id": "97d9e9a60ba916658293d3acb80d20fa5940116649413b0ea4ee03a8d00f6d2f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello desmos", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-24T13:54:25.821697898Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "982dc804e8db2ed1b591e17c429f60f813228488a78ffaf93526a6e3963012cf", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Getting there", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T21:05:36.219Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "989b3456338d7738ccd41a798d93dd5cbbabe499126cf2a0e24de9ac082ac70e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi Plabo!", + "parent_id": "24d80c82b3c05b97effe71077cc1d2e2c566058752104a81aa03292a50ae556f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T11:41:58.955Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "9a7d7e633e95299d8c171be1c4b80e2cc2f59ad4f7e6ed18a55a43d719ef9878", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmX2W3PuhzzHArWtc5his9kW1DpV8hxd664Uv6urqLFobB" + } + ], + "message": "Fuck you Italy, we don't want Corona Pizza! 🤮🍕🇮🇹😂", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T07:08:53.237920812Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "9aa2cfecd210260a7b28b96d445cd9e3eb7b63b11c1ac776e9be1876c9ddb346", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.io/ipfs/QmehUN5Y1tWBaVaGHWGSMdGkUx6hAcApmJeJnqLVfh2T4P?filename=corona_india.png" + } + ], + "message": "Posting data of covid-19", + "parent_id": "", + "subspace": "60EB893B5B5EEB236C5600E6ED157720F5389CF9B02F5266D6863CBF98B560B0" + }, + { + "allows_comments": true, + "created": "2020-04-22T19:36:11.417Z", + "creator": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "id": "9b7281eeae1fd3e7ce69e9003ad21e5a4e7f0e6a9f79c938866f779ce17d396f", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmQmNBFcJsJqWVdt7S9eXR6kHBXVorXUnngDoHUnRt5dPs" + } + ], + "message": "out here like", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-26T10:59:13.635Z", + "creator": "desmos1lcxt4h5rsa32ml5kctte80qcnqw9t9mft3v4se", + "id": "9b7365242e7278af3edb999179dab8d3bf134d414d6ea0b987f62176f533136b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "zero", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:01:20.645268774Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "9cde471e34c9de618a47a33b1e098340db3c3b3cc88f1dd9aa2c925a8a6774af", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Almost", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-25T10:10:55.411Z", + "creator": "desmos14xec9tjsw4v5vzsx52dhrx7k873889pluymuzf", + "id": "9d37cac59e55c26f0bef9a06a8b26d4bcc95a74c48eb1e051b5913f5d88343ff", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🎧", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-27T03:05:03.228Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "9df0b16242586b6d47661e13c6ec07d4a4563681711d6842a54ed5ad37add1c3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "good night", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-28T10:20:50.655013899Z", + "creator": "desmos16l0xmm8teec49rk7q6wmrg95jqrpj87y7at7rc", + "id": "9e8415d0f28e1cb499cb9b3ff95df55ece402b1b55c2292fdce5f9246cbacea2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello cosmos", + "parent_id": "", + "subspace": "efa8de93093dc20a40c6422cfa77931867ec0250567c04e476bbc02327206a75" + }, + { + "allows_comments": true, + "created": "2020-04-14T09:19:09.217Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "9f987ed708effba136abfb2c62b2891920dfa72d23b74086fcc5364ccaf084c5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is my pinboard for famous quote.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-20T06:29:09.03384Z", + "creator": "desmos1nemxzd4x2djvm6vdt7w8l0ahy3fsr57pe65vxj", + "id": "9f994d21e7a95c4ad1a8ecd2ee379fe692055b9786df6b2c36968ba795df0da1", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello, Desmos. ", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-19T14:20:37.784Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "9fc27e622d76438f9db955947cef1df5a5c4ab39ceecac9e60feda46283d9d89", + "last_edited": "0001-01-01T00:00:00Z", + "message": "BTC FTW 🤘🏻", + "parent_id": "e8271575e3f8f6556ff904751f5aeed290f925de3d0517c4f60ba263ea1cbfe7", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-13T13:47:44.799Z", + "creator": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "id": "9fd09af14d0a971457eb7db4e012963f57367e3b197f84513c300c1671544562", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmNMW2ovw4H9U7o4u2xDUo3b1dj488fBeZ5qNbSGQEyjWj" + } + ], + "message": "stay home:)", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-14T06:12:59.976Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "a04dbf0178a36afb384b19aeb90f8bba66485a7dcb569967f1e41801720ad603", + "last_edited": "0001-01-01T00:00:00Z", + "message": "you maybe right", + "parent_id": "e73d391ee8e0daec8378747ccf1ab947d489182bf172496a9609492cebbe67a0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T17:22:51.265Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "a0c47fc628c01e0d492f9ba50e8c01fa1a033f8c0f43dca477eeed21bc80a088", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Surely not everybody was kung fu fighting ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:20:18.211142835Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "a10878ca7d7cb317449d3c44bd943e24f360f1d79065f6961a665e343be9f47a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Can't wait for the [Reset Everything event](https://twitter.com/epicenterbtc/status/1242820735673995265)", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-21T11:26:54.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "a1eb056dd3b58709c0351e27d3776596bc887626e4c50cb127d21222fd08de1b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-21T05:46:10.423Z", + "creator": "desmos1u7cmy5tx2fn9lmdmphegmnqajedyz37s0mvxm5", + "id": "a2af5508f00c4b10a25e4f0afaa9b35f118b66ce8c417be010fb807af0f12ac4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "j", + "parent_id": "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-10T22:23:14.609997912Z", + "creator": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "id": "a2e5c528b98ead65770c1c7462858d2b58c835f322c9843376148df96ee8b003", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Validator Poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": false, + "allows_multiple_answers": true, + "end_date": "2020-05-01T12:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "No" + } + ], + "question": "Are-you-a-validator?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-13T08:36:41.996Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "a36ac52fec2e92a2ba78b88738a3981fd3347a8d6c15c8def9f30b031418909e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "see if this message will be duplicated unintentionally 🤔", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-14T02:27:03.592Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "a39f600103191b8bbe57f5e696d9986c3901a5a974f9cb0d8d4e257fc3dabd5a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "no matter it is decentralized or not", + "parent_id": "4cbcec8615dd6cea250629b8b585588ff0aa9c640ac63de6b4701029a9b5cd74", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-04T03:32:25.817Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "a44c9fb9d8620a0889ef749a1baee27be6f20812bef9024356758ce71827ced9", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmSK3ebeNrgCRFqrfBxzNCBixnQmNbBa9fyEiK9GJW6WLe" + } + ], + "message": "✋🏻☝🏻", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-10T14:20:11.121Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "a49893b26f9597be32da68b5bc645c62e03c1ae23204f80aa2db17762893a00d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hardcode benevolent intentions. Almost like playing god.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-14T01:59:39.03384Z", + "creator": "desmos1gmu4uevcvwfcuu43yp27gcv4ngxuh9sxfpv3er", + "id": "a7fb7a1bbb021c85827280fcc8cbc5e2a6856a8788c22b18772b611be57a1424", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-30T15:28:24.813Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "a81a220b942d45c2e88814bafd68fd71ae7ee3191b00dfb275694f96b9a92fd9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "they need to believe in something", + "parent_id": "76597beaa2698925b5b30fd991d3e8f720fa1a0234ffc6549b61948917ee5bd7", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T19:15:02.815Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "a8f5e5cbdea94525b2dd60ebb1c131785cf125e4757a6fa27b7183cea0eaa33d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "恭喜發財!", + "parent_id": "093a6057e15d3990d8cc769fbcab978ee997ac3330f709f0b37cd3a88b0d4046", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-27T00:36:29.03384Z", + "creator": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "id": "aa17e8ef2e258f6b527d4752330eebb40659f5cfb1411eed169abb66c6575be4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Decentralized Social Media will usher ina new era of human freedom", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-23T19:05:47.163160286Z", + "creator": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "id": "aa27fcff461e8de14d7649aa14d56c7c9b78c29356e9c81c0ccc676654940ab6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Around the World in Eighty Days (French: Le tour du monde en quatre-vingts jours) is an adventure novel by the French writer Jules Verne, first published in French in 1872. ", + "parent_id": "", + "subspace": "97ea6c072211c4df2762b66a793ef01a48a03b17a6d0f160b1364eac45f8ab3c" + }, + { + "allows_comments": true, + "created": "2020-02-14T20:16:40.535Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "aa6f0e3e11a5a6aefd855e2cdb7ebeb771806c0cffe75c8f5b9bb134d5a252f5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "crypto's killer app is free money", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-16T13:19:42.281Z", + "creator": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "id": "aa7e8e4dbbf8a1accb4506ec10779c7698ffb6e9ab5b1cccf3194c750f36d189", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/Qme65jibSxGMay1GVuYA1iG75Re3YEFDbg8cAwshCbK8Cq" + } + ], + "message": "もしもし\n\n♥️happy to be here♥️\n\n다나🐾", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-11T09:50:18.196Z", + "creator": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "id": "aac72b6e578c16f042b66bc2e1712e0a2343df122a2d972ea088180a44f9b178", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🐾", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-11T18:04:49.737Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "ab822d65a635cbfdda18a2f3ff04fadb775696896f4ffc160098ba8e7dbff86f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I'm not confident that existing crypto attempts at social capital are well understood. Things like Steemit just equate social capital to financial capital, and that's vastly oversimplified on both sides.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-04T05:19:57.703Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "abc299e1151949c5f3e232266d211404f05add2dc16eff6b01672fa5d625f627", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yea please upgrade to 0.0.14", + "parent_id": "95e0f2ed5e4abb2c3f681332ce99cdc501c6c5260e609c11f5658ab0f6ef9f76", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-15T05:30:49.464Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "abca8ffd138da86b65a7c3c6c2e9a2eb8e00f9e4762ec642a02c64455458bd4c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "How so? money is never free.", + "parent_id": "aa6f0e3e11a5a6aefd855e2cdb7ebeb771806c0cffe75c8f5b9bb134d5a252f5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T06:37:40.016Z", + "creator": "desmos1lzlfh4z6qz6630g05ufz9u2psm7tvqdap6k7dy", + "id": "ac5b378c97f49c2145243bc17eb904fc15cef16f7c9085d0bc4d2e0c29064a7c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hi what is the udaric in the funds", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-10T21:04:29.281697812Z", + "creator": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "id": "ad19286568d6d6319e3893f946a91d0a6637984dcad14bf53a4d635314a06015", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmWbL5peyr52oQ3AFYZzyeNNgmQAGvfcqV5LyXQtZupXYr" + } + ], + "message": "I like to read books!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-03T20:38:37.301135007Z", + "creator": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "id": "aedd58749b14053baa507bc84760fe9a15dfb210e6e016d2cdf1095e49d618d5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Desmos Poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "less than 1 year" + }, + { + "id": "1", + "text": "1 - 5 years" + }, + { + "id": "2", + "text": "more than 5 years" + } + ], + "question": "How long have you been in the blockchain industry?" + }, + "subspace": "7e45770620a851b405d62f7fd8d9bd490039d8e11d0db5fec2f396e847c6cd06" + }, + { + "allows_comments": false, + "created": "2020-03-05T02:47:54.884661161Z", + "creator": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "id": "af67fd679385f18a04cfb1709d5a99f14da3330be05090bab6d691d9548f2b70", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmPVBJ8fY8TFLtheYyvBQTiGVi685jtUAgewnzPyLH42aU?filename=Ragdoll.jpg" + } + ], + "message": "This beautiful cat!", + "parent_id": "", + "subspace": "46d6db311b3871d14b745ed42c071a34df3dfad129be733d9098edfd8050f0a9" + }, + { + "allows_comments": true, + "created": "2020-04-22T10:08:01.061Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "af878831e906e0f00b3da889abdfa14d8a2f1345fc1f5fc0bcfe431ee2dea793", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Bonjour! 👨🏻‍🎨🥖🇫🇷", + "parent_id": "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T16:45:33.559Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "afadc3def6f4b63cfaee1794d92ac17c5809d34f0e6e2046f8c985875cb58c37", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you everyone for reporting any bug and suggesting us new features! We will try to fix everything in the upcoming days! ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-22T03:17:49.03384Z", + "creator": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "id": "b05b1359ed78c52e4a9ff209f0a0dea6a01eda304d69995d8f0d9b3087ce8021", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-30T01:05:34.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "b182fc36e087b05370149b689b0dabcf3b79933964b1e4ef872562072d42d210", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a world class response.", + "parent_id": "4fdd46ccb4b1c2ee761968a8d59ad5396959264ee1b1b968da38c429780fac0e", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-17T14:00:35.015Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "b1ca8a78b63ac5fb1c62ea1dc24e99ddd300aff4cb693596256c601dfd6bb0f5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "do cosmos projects consider themselves web3?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-26T01:04:36.831Z", + "creator": "desmos1kj95g6vqz2ww7hqlnp99lxa7rg8w7c54myrcmf", + "id": "b2071ae41e71c7f1718a4c4c2ad3c9d587623fff121bc1941209f9117e588806", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmToKa21k17J3Xe3XHADZC45MARoKXAsSnJdu1FDHNAdek" + } + ], + "message": "trevor??", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T09:49:37.774Z", + "creator": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "id": "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello from Paris from the IOV team ☀️", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-25T15:07:31.191Z", + "creator": "desmos1sht43e32padfe5v4ewztf8up5ldh324mj7ta3j", + "id": "b27096291acb4a35dfb907472ba73ddcdd39d14ad1a5bb858d69e221e71ed903", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🎧", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-08T13:04:29.745398739Z", + "creator": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "id": "b3685efea00df0194653a2e760475f2ca4d2c01634756aa0ec78d4e2642762ea", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-30T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Beagle" + }, + { + "id": "1", + "text": "Pug" + }, + { + "id": "2", + "text": "German Sheperd" + } + ], + "question": "Which dog do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-05-01T03:39:30.922Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "b39056ad9c235e895520a6569fdf3edbb11769541c83ecb39364d4f510a7b7ac", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy Labour Day!", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-01T08:04:03.705Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "b40ddce10b03ee9c1a740b75b56255ea6e00ee5231eb59346bef337f0a45612e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy May 1st 💪🏻🥰", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-04T09:06:38.799513683Z", + "creator": "desmos1yyf428wtf75skphxmf5pyadhrnjywq3c73wya0", + "id": "b463b00a7b558d16a24d7541873e3e4553f59e5c3b11fcf4f152cd5d1d63281e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you for the clarifications @RiccardoM ", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:08:57.135156364Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "b4713015783490379dd63bc3b1752cee60bc2d93940ce67d82ce7ebd05a5b271", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Can't wait no longer", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T08:43:29.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "b4aae855665ada609e34dd4d800d2cb73d738ec89790d8f81ab1f8effed81425", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is another test message", + "optional_data": { + "external_reference": "dwitter-2019-12-13T09:51:32.277403" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:38:17.702Z", + "creator": "desmos19m7awuk988tkadyr4el9tn4vlt77w4wryrst6c", + "id": "b4e5c65ddb0aa6ef3eb3adee5ccdfc249adfb618075a346df5135f18c33d2378", + "last_edited": "0001-01-01T00:00:00Z", + "message": " 大", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:52:16.052Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "b5284d65cf6f88eafadfdca523b01cec8d88104c30af94f3c2ca4d59000cfc05", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Need some vibe to concentrate while you're working or studying? ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-20T18:50:58.337496333Z", + "creator": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "id": "b5e08e2a0399b1f9f621b642c2a9a75fbc61b449551bd427bbc0a4e956e63b3d", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/Qmaa1GpGKmZfvXBqGi4k9LLGqV2ZtVcJvYFnC5WweBU26T?filename=216614_1006585122050_8400_n.jpg" + } + ], + "message": "my portrait", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-10T07:27:24.254Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "b6e434c4bc312993182aaed6118982b8aaf520177d01b8908e63b99163361ea7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "You may create a Poll 😆", + "parent_id": "00727e9704aceb6e10102366dcdeeaf94d063c4588cb774ba6d37a40e619b258", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-20T08:13:04.03384Z", + "creator": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "id": "b71bd3c8d238aa66d406086debef1616b4ab02f8e534032a2c497c30dc6c5f4b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "My first post", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-16T14:14:36.088Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "b75201687041a044bce359ccb6cb0a1d354b8f828e5cc1e4d915a444c2088ba8", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmQjHmkpsjghksqb7AwTkFfZAjnQg3s8j6XFeqQMX24m7h" + } + ], + "message": "Fuck the ru u uuu lesss\n\nhttps://open.spotify.com/track/6TodWdTSDfzwgYynTZSvJn?si=nApdmFOFROm08MTa7MFRyg", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-21T14:52:58.184877705Z", + "creator": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "id": "b85bed667497c31cf660bff2118047d323b9d647aba141ee476ba6ec69845aa6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "test message", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-03T09:02:06.464Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "b86720f6db62ec0849aec750abc9b30489d75e7baef8f12209c12afdf764dc5d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "extra shiny mooncakes for all!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-06T01:45:05.144Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "b8e641a8e7b9220c4f7e72e9054deef412657514ce2753474c0cb49bbdc3943c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "We cannot solve our problems with the same thinking we used when we created them.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T08:15:59.982Z", + "creator": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "id": "b8e870750b3210061dfe5d12af71481badac7744c48e4979e4fbce725e9ae1c1", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmP6TmYv8jek84QKZReTEeshSKfda19ydb5EVRZpSHjqL4" + } + ], + "message": "Hiking 🤝 Me", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-25T07:05:14.248Z", + "creator": "desmos1fg43gttcm8l5c6jptn7stnjnnj0hl5xqc7p0fz", + "id": "b962c95a53c83c2f60067f1543975bc996e0cff94400641765f5f0e717126ac6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:43:13.592Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "b98b2b021a93f16e04031c4d4014e80aef721f859afb87030162fb481fd42a18", + "last_edited": "0001-01-01T00:00:00Z", + "message": "is #hashtag working?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-10T19:51:26.18643382Z", + "creator": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "id": "ba73f3622933abdd6ff22e11642260cb29cd1a13651faa0a0d6e277923adcd0f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-11T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Often" + }, + { + "id": "1", + "text": "Seldom" + }, + { + "id": "2", + "text": "Very rarely" + }, + { + "id": "3", + "text": "I don’t read at all" + } + ], + "question": "Do you often read books?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-30T21:29:25.862376147Z", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "id": "bbd8d338b85cc5f0a2bab4d4f2d5498006fb985d64f2896c7c74cf1b759afb77", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Enjoy @simi-dev ;)", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-04T15:47:16.694Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "bc95556ae56b5d534e61f007b07a33047842fd0e978ec47aa0471e5cf9fe3213", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Do you know why this DApp is called Mooncake?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-05T05:52:59.154163004Z", + "creator": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "id": "bccfafe600077d430586713a896b011fa1b56f08d8c7022dd90e38ffd3884fc2", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "text/plain", + "uri": "https://ipfs.io/ipfs/QmYVZ6ewAbNZPB52Hk3B8nTRymmCC8SDHL8LovcCLEs6pv?filename=gift.txt" + } + ], + "message": "Gift!", + "parent_id": "", + "subspace": "663ef20d8f790fafc23cc580542c553135232b1cb0e71adc58b3af79147dd994" + }, + { + "allows_comments": true, + "created": "2020-04-22T06:46:13.081Z", + "creator": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "id": "bd88ce136e330d6a8d1041cac646038bba8fb40db4f948b6dd1abfe90a7de018", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello", + "parent_id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-22T16:33:07.58981989Z", + "creator": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "id": "bfe68c7b6e89a958b1a429d8057537073537879d68659000b6ade357455e6d7f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Adil from Inchainworks", + "parent_id": "", + "subspace": "7279b8205d3e8256918aeda948cc926de9ed872b7de7ed34e2de246304eda0cc" + }, + { + "allows_comments": true, + "created": "2020-02-15T06:00:16.351Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "bfe7fdf21054c84ee97d1cd04bcfb59fcfe88f77aebfd130475aedee9d2897ef", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I agree. Status is doing a great job on this", + "parent_id": "855e64ed5de045c872b39d250c711d56f92a880648366a0b20e5216c212b7821", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:28:07.003620855Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "c113c1dbcd2b77e111f26d4880645dc81b4393871712d483a5498f684dcd97fc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "...al of this will be yours...", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-19T04:51:15.892Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c1813603465a3ab30ab6ba2a2cbb174cf0dd7030156673d0d0985a32496ed51c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It depends how you define web3", + "parent_id": "2030b1be95783e9002be686eefa4e50ee34125445d064f17d3f59c14b7fcc807", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-21T06:29:37.295Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "c1bc8fe425c5d01abb95ed3582de354646f5db6bab95abcb23f134703c934c2a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "-factor", + "parent_id": "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-26T01:03:45.703Z", + "creator": "desmos1kj95g6vqz2ww7hqlnp99lxa7rg8w7c54myrcmf", + "id": "c1c2e18a4e374578c140f66f4e53c56fa77394f463960ce7982e0ce912b37c6c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-30T21:08:55.397504182Z", + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "id": "c259064b41b47cb0f7f57c3ae1d1741f4ddcd82316d2c21328ec0aa73b7fc696", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you for the invitation :)", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-30T15:54:48.948Z", + "creator": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "id": "c3f3e3bccbadf9ceb8eeaecbfac399cd3d49d303204861511401b0ca0fa5cb44", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Because they defeated death and live in our hearts. Jesus Saves. God bless ya", + "parent_id": "a81a220b942d45c2e88814bafd68fd71ae7ee3191b00dfb275694f96b9a92fd9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-04-30T15:49:56.792Z", + "creator": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "id": "c4082b9bcc0b8627a7db9501fe205a010e910482509615479d041beb58b2cf60", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yeaaahh cool!! It reminds me doctor manhattan from Watchmen ;;)))", + "parent_id": "64d6a0562f599a1ebf799748f2ba3c2b27e9b340f59a4d9bbd765940402e00bd", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-21T11:24:49.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "c42b475a80e47f83085612b4bd20ab472ce67e99ef35f30d237c7e7cc16cb411", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-14T13:33:54.83382Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c59fc8486bbf8adaeaa2648b55ef6a14f60c28dc3b136fe8bc3f117b0ad756c4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Primer Phase 2 is on! React to post and validate at [Primer](https://primer.desmos.network/).", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-17T07:57:00.686Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c600d2109cbb2cceb9de766e98298d56f50c674cdd9b33dea8274fe4fa8e4100", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“Don’t be part time of anything, be full time of everything.” - Carlos Santana", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T10:04:39.151Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c63a0619dee65455278ce58c1ff7f2a74ca41a2489d64f99bc2f638124f37b5b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "`udaric` is the denomination of the staking tokens on the testnet", + "parent_id": "ac5b378c97f49c2145243bc17eb904fc15cef16f7c9085d0bc4d2e0c29064a7c", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-03T20:00:31.548863845Z", + "creator": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "id": "c643dd0c40b89e46f6dbb91d372f3b8e05cb39a56c8728e17d3ef85375e9fa64", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll about pets", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-15T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Cat" + }, + { + "id": "1", + "text": "Dog" + }, + { + "id": "2", + "text": "Parrot" + }, + { + "id": "3", + "text": "Bull" + }, + { + "id": "4", + "text": "Bear" + }, + { + "id": "5", + "text": "CZ" + } + ], + "question": "Which pet do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-31T11:08:42.686965031Z", + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "id": "c6c615fa00c75018f330db9449b39454097e1c6a3327b45546e9747d8427191e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Go team!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-03T19:26:22.908226106Z", + "creator": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "id": "c7427ab11a4c08eb7d2ba657195ddf16adaa63e21f21c1b3ad8a3675db938cab", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Just a poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-05T22:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Want to have reward" + }, + { + "id": "1", + "text": "Don't want to be rewarded" + } + ], + "question": "Just a test poll to receive rewards" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-25T07:03:09.134Z", + "creator": "desmos1fg43gttcm8l5c6jptn7stnjnnj0hl5xqc7p0fz", + "id": "c787808e6e216a7cfb876b526850fb9e0eb217c18e47e5b87d027f03e0e1f1b4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing2", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-28T08:55:19.539Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c7eb2f4d1fe11a8256c790f2911e0a61b3279428e453776bfd548b7213f4acdd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "早晨", + "parent_id": "f4adc73d852a7ac3bec63fea227140ebf8f6e4d7ca2e66080e27a3add6d88c57", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T12:42:34.288Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "c889de98682770acb953b171df4a28e2b6fc297325bf1642cb915e24c5c0abed", + "last_edited": "0001-01-01T00:00:00Z", + "message": "aaaaa", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-21T14:56:27.653397551Z", + "creator": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "id": "c96944fbc5e0290bbd9b535d07152987eb1df941ad310bb8cedf38c2ab47344c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World, Desmos is truly great and not the 💩 in the crypto world!", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": false, + "created": "2020-01-22T14:01:37.048233Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c9abd69d0d9ba405d0d5c27f9b0d9bb4e58a41b59eab6e237ef08ca11c41bd05", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello, human!", + "parent_id": "97286eb1572e13eec950e5439d09daf814155bdc5eceab64b8ceb94ad6e2c987", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-05T00:51:39.352Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "ca54079e6c1653f1728d3c594735423a6da588c7227dce0b698cc66c433e4e64", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmP4CYCmKVBHYdynQdvaRhEmrUoo8v7v6yhDLnvmbnfoRv" + } + ], + "message": "A famous quote from Abraham Lincoln.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-08T06:06:02.770746102Z", + "creator": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "id": "ca5d7b4481d07dae5f5d22b0e9cb7f51f4db4416316b5189f535a1fcdaa713a5", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmfBcshQrJyk4jRdKZeMDEJB4ga4ejFAqamZcoCmU8e7t2" + } + ], + "message": "Bi23 logo", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-13T16:00:31.786Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "ca809e695d09061709df7aa8b1a0e0a7c88d80a91597084752b02be01fc30629", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hahaha nice one", + "parent_id": "11cee369888628b5fb8b21b68b37a4ce634c7061522c4cf0475ba4d09d2efaa5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-21T04:13:32.395Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "cbca5f9621eceed97ba73057e92674614c6e5fe08040ad4d3d9eed3746ce754b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Information is the new oil. We need to pay to reject the inflow of information, which turns the price of information to negative.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-18T05:27:15.145Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "cd755a7e2c9ad845c9e86ee777d83c373469bb662bfd8ef7d3b37ae4d94541f3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Absolutely one of my favorites!!", + "parent_id": "4db5e08a4243cef25bcd8c76d81b7d5518f0f3c81a8eda1b41d4aa5bccb8d866", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T09:09:17.076Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "cd7ee9cef8621276aa303635a473cb22623bf6e86b12c79564fe41153023eea0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Test", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-25T07:01:40.135Z", + "creator": "desmos19lcvzq73s3fr9uwwwlu3qjsfsqjavqawss57ce", + "id": "cda198fa449ed39ecee0d4f8edb5bc6b5685e68e91747cf72b4bfd08ecc80fe8", + "last_edited": "0001-01-01T00:00:00Z", + "message": "this is brand new 😎🤘🏻☑️", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T13:45:41.621Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "ce1d9eec372d86a038d1c0619b993d94b22c2cb783340faa772746f47e52eeb8", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello 👋👋👋", + "parent_id": "469a63694b6c9548d7f6183a745081b91e380de1d14aa863abdf10333ff1db12", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-21T08:07:29.662Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "cf6749d5720fe4101416d092348b90dad33b348d144d0ea217df80a0c850381e", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmbYow8EVfdQQH996grK18Jr7K3J47nVt6qRUESyuKabF9" + } + ], + "message": "Gundam vs Hello Kitty", + "parent_id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-30T05:38:02.795Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "cf8403745e45519d6f67e8e9f0e9cd58d5ed6d266ca752492e982b9b4bdc0529", + "last_edited": "0001-01-01T00:00:00Z", + "message": "123", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-25T07:01:02.514Z", + "creator": "desmos1fg43gttcm8l5c6jptn7stnjnnj0hl5xqc7p0fz", + "id": "cfefd1307243ec6681ae3322d4dc05d882657bacc4e639191c80889d7d5a6db0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-06T12:31:03.992617709Z", + "creator": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "id": "d0977521a9238c5274dd33a557fce1fdbc351e476636c9ed09c5d3f440140486", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpg", + "uri": "https://ipfs.io/ipfs/QmZA9LkLWCvpNTuEJegfsPgay2c7LND8PCJZP1iEAZHgyX?filename=desmos.jpg" + } + ], + "message": "This is Desmos!", + "parent_id": "", + "subspace": "b6c6898061fbe0e85b5bba31f546c5fbe249759f2f75f65df6d610a94d661ac6" + }, + { + "allows_comments": true, + "created": "2020-03-03T06:00:10.659930914Z", + "creator": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "id": "d0fb59f466329ac34cad828d8d34ca840f1606ed40212bf4447d568a2fec7bb9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "First poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-06T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Polar bear" + }, + { + "id": "1", + "text": "Grizzly bear" + }, + { + "id": "2", + "text": "Black bear" + } + ], + "question": "Which type of bear is superior?" + }, + "subspace": "6a30f630de10757c2efcde448c91d09746a44b6be1688992634996f76955a21f" + }, + { + "allows_comments": true, + "created": "2020-03-27T11:38:37.429Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "d11b28a6b9f354700a3dff8ce3bc1140d4099582edef5408e93064e302ac63b2", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmWhwPg8iy9xk12jhhBxET1VJSPHxbiVHyUX4PnSRvsQfE" + } + ], + "message": "One of my favorite contemporary artists: https://open.spotify.com/track/25SJaCCPiosugnlY53VhRG?si=EDYB5pCaRPet-pPbozDfKQ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T12:42:39.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "d190a2dc940b1266da7b5ee7c7852006951ea98cfec60c81cca82d6ca105b0bd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a new post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T14:18:59.422526" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-29T15:10:42.535Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d1975b2e949535a9424900f871ade87533ab5e4218c48bfe4728958a0162b4d4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "![alt welcome to the real world](https://media1.tenor.com/images/d381427f929ee91798a8167bedbe198c/tenor.gif?itemid=5898146)", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T00:30:54.293Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "d204e1be53558d9d57640d0b093fca5facb50048188a4e3c476c0fa32835187f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I think steemit got most things mostly right, but failed by allowing steemit, Inc to basically own the steem blockchain. plenty of good ideas there. might be a good idea to separate rep from rewards, but we risk entering the complexity zone. Suggest all moneys be made intentionally simple and easy to understand. ", + "parent_id": "ab822d65a635cbfdda18a2f3ff04fadb775696896f4ffc160098ba8e7dbff86f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-17T15:30:21.108Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d209fff1555aae1c048d6bb2d95a2d37ad87f34365ec250bae2a2f52efefeb69", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Spread the love, not hate. 🦁", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-09T13:10:49.713299225Z", + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "id": "d26028d560ea75e5841a311cfc99eaf932c163865f4a274a084981fb2e3b4af3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-12T08:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Porsche Panamera Turbo S" + }, + { + "id": "1", + "text": "Audi RS7" + }, + { + "id": "2", + "text": "Audi RS6" + } + ], + "question": "Which car do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-05-04T05:43:05.391Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "d2dd7bc29da91695b7bc13fc10056ea0d891786a3f02832cf62b82becf843874", + "last_edited": "0001-01-01T00:00:00Z", + "message": "that looks damn good 🤤", + "parent_id": "044a81561f1737ce018b1741b88aba6eb8fe383a2514abac950fd46c55b8da97", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-12T04:10:41.225Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d326b22596c8e59ddb69726f68b775db2b81d0818e369175e0605bff94e492b6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy Easter 🐣 ! Everyone should wear a mask when they go outside, even the bunny.", + "parent_id": "fcf0fa07c23cb2010449c4780e7747037b365074e1767f1694a2ab0c7058bf24", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-01T14:14:22.052503025Z", + "creator": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "id": "d41b30df30554f3c8daa3f3eee70e4f62f35dccd42547c7c7ce9bd45d9df50bd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Coffee", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-04-02T12:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "0" + }, + { + "id": "1", + "text": "1 to 2" + }, + { + "id": "2", + "text": "3 or more" + } + ], + "question": "How many times do you drink coffee in a day?" + }, + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-14T02:46:31.057Z", + "creator": "desmos1jqpqjcmqq0rq2dzgk6y9cljvx35jwqndkxr54z", + "id": "d4a169eb6809b6edd269bc5943d74689f1fae5ccb69f080340980f52f15e95e0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "current time is?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-29T05:09:04.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d4d5e4e8ac7fce379301602dc9c5614dd6fc49f042b1276db226e9de38776a5c", + "last_edited": "2019-12-29T05:38:09.03384Z", + "message": "### Do you know?\n__Big Dipper__ supports [Github](https://github.com) favoured `markdown` as always. So you can post your messages in `markdown` on __*Desmos*__ and display well on __Big Dipper__. This helps you explain ideas well. \n\n__Desmos__ stores any characters so you can express yourself with Emojis 😎. Or write in your favourable languages 우수한!\n\nYou can reply this message by executing\n\n'''\ndesmoscli tx posts create \"You are the one.\" false --parent-id 46 --from \\\u003cyour_key\u003e -y \n'''\n\nOr like it by\n\n'''\ndesmoscli tx posts like 46 --from \\\u003cyour_key\u003e -y", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-09T09:48:36.257797888Z", + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "id": "d521ed763fb2384971c9a854a8b091952bf50e010476fc5047b2085a95060e75", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-12T14:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Pizza" + }, + { + "id": "1", + "text": "Stake" + }, + { + "id": "2", + "text": "Mediterranean food" + } + ], + "question": "Which food do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-17T15:40:45.411Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "d5f76a6a574bb8620f1fc9bd1da5f2d4249f89c6fd406ff9393c0ff6fdb59278", + "last_edited": "0001-01-01T00:00:00Z", + "message": "nice!", + "parent_id": "f339b5af2c47dedf307f8f20d645bc374a2715e0dda71f6541c387ee2104bebe", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T11:40:29.259Z", + "creator": "desmos1p8353z7nmdl2332arylfxg6rly9ln2mp963su9", + "id": "d66e7a2108388a65ad7b5dd84cb232e0c244446861bd2c61900d3ede28ae99f9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "test", + "parent_id": "2020-04-22T11:39:27.653Z", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-29T13:08:29.03384Z", + "creator": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "id": "d6dd28b55b07f4897ec1f89f49eea72856b16ad807d47126d161ac5e53d7d8ea", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I love this World", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-20T11:58:19.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "d8f8472c8c6a4572ef60293448551c586eb4e9a5e2407578001ee44ec09a36cd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-04T10:44:28.355Z", + "creator": "desmos1q8df8fp3tpx6gxjlhsc0vzqaxet6wa2pmxrhzh", + "id": "d95bff0b19bf5f8f00787669027b05825501243e1126c5684d5e82c516e2140b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Soooo, who is hyped for Half Life: Alyx?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T21:18:55.871Z", + "creator": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "id": "d96bf27e7aac3c2f051128bd743f260e3df46b1a1504a7cf922b92e24c937b1d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "never been in quarantine 🤣", + "parent_id": "16b5390b68a79b54aed05ab62929e04c44f11fe5b949c0bf96351714ad8bc79b", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-15T04:18:22.547577Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d9e05dc07ab47dfa3f30b06822cae9653fa5c671d5841e7b6a83bb20064215e6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Which Dragon? Dragon with Stake? ¡Hola! Mi amigo!", + "parent_id": "00f7cf78bb3e31d72605e186bcdfd11d2d0195566dbeec61d5fe59aaa5eb3f75", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-06T14:27:26.517Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "da6b57caefd833eecae13aab7f9871a7242b4ad913bc0f4915acb17fcfc8aa04", + "last_edited": "0001-01-01T00:00:00Z", + "message": "it's given to you to activate the account when you log in for the first time 😉", + "parent_id": "ac5b378c97f49c2145243bc17eb904fc15cef16f7c9085d0bc4d2e0c29064a7c", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-29T16:26:34.03384Z", + "creator": "desmos1patn4vz7dcvj7ae5t7jje0red4jrm66w0tku8d", + "id": "db1e801fa24679f9edfc092ef877aab15f39a25d04ff836977717d6806921c06", + "last_edited": "0001-01-01T00:00:00Z", + "message": "melea ◮👁◭ Desmos Validator", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": false, + "created": "2019-12-11T07:57:54.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "dc09b4e6fa1303ce484eed24a09d9d5758a6b1708bc9b3ffeb37f5e747d0e348", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T08:51:32.262217" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-20T13:47:02.591Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "dc10281240e06affaa3c7f7bc6c7611382fa92b0929112ef3c630fe5d1f37086", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Welcome! 👋", + "parent_id": "36616f40467d40793d05a00c484f3e275da6a2c6fac0ae14c75c22deab7cece3", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-04T02:07:18.166955392Z", + "creator": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "id": "dc80300efd795d96e060cf1d8583ed442aca4eb8ad140af8f38ac709a3fd3454", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-20T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "yes" + }, + { + "id": "1", + "text": "no" + } + ], + "question": "Do you think height is important?" + }, + "subspace": "46d6db311b3871d14b745ed42c071a34df3dfad129be733d9098edfd8050f0a9" + }, + { + "allows_comments": true, + "created": "2020-04-03T18:49:28.946143643Z", + "creator": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "id": "dce6de6dfcdc03735d760b03cf8666160353271a10916daac5cf66aa339b24ba", + "last_edited": "0001-01-01T00:00:00Z", + "message": "The 1 million question", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-10T20:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "I'm worried" + }, + { + "id": "1", + "text": "I'm scared" + }, + { + "id": "2", + "text": "I don't give a piece of shit" + }, + { + "id": "3", + "text": "I don't know" + } + ], + "question": "Are you worried on how the humanity overcome the depression?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-30T01:40:59.03384Z", + "creator": "desmos1rt0sdmma2mhcgq463s2m5myf5w2mcks3cr4xjn", + "id": "ddffc6a7a1e73f7d27696ceee2db6b84f7a3067b2c744f260534b6574c9a1b44", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Don't Mock Greta Thunberg. Listen to Her. She’s right about the science. -- Bloomberg.com December 12, 2019, 3:05 PM EST", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-18T01:17:52.779Z", + "creator": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "id": "de12f0c6b72b32fba45fa2a0931ab9d95caa72ee25cd699cbef4968948ea0831", + "last_edited": "0001-01-01T00:00:00Z", + "message": "test", + "parent_id": "b1ca8a78b63ac5fb1c62ea1dc24e99ddd300aff4cb693596256c601dfd6bb0f5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T15:00:39.746Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "de6c1a5d7bc0e6a1680969eaaa7d1c46681bdccbe10a18160f5a3c761aca5a16", + "last_edited": "0001-01-01T00:00:00Z", + "message": "welcome ios friends! often when i post I'll get a duplicate post, but it only shows up for me and goes away next time i load the app\n", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-03T13:43:08.276Z", + "creator": "desmos1pp9x6cppe8ykytk2ecvnup3pak56esh64ypyvd", + "id": "e118fa2f999e085549f68f7b36ca86a6bd480315772cd20c8880fcb05f54e783", + "last_edited": "0001-01-01T00:00:00Z", + "message": "wkrt", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:55:30.483Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "e1702bc2d8b818ba97435061bc6505c896f306de27d47870a3f94f924eb648e6", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmTQbRWaanP2eQR5w5fFjwyhyQvXkw3nwuzimGH5WiZj81" + } + ], + "message": "I was saying...some vibe to concentrate while studying or working? https://www.youtube.com/watch?v=5qap5aO4i9A", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-06T16:58:36.905043634Z", + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "id": "e1cefae65bc7875962f21aedb041d67accf56bbb3b2f96458b5698bb8fa9cedf", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmTXszBDASEUXvb845MNuQYvz2crSBiUhvBZBw2tn4KFXM?filename=Fotolia_44443331_L.jpg" + } + ], + "message": "Multimedia Post", + "parent_id": "", + "subspace": "626db8036244be06486ac6e5576570ba41c4ca2aca4808e123f8f11f97d719f6" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:20:04.825Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "e22788aef84797225c7c8d8ec8d1626d427aa8b1cac0536213f0dc86b388a4cb", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmPhw7q686cPuyGUcYTZdbtTGnJVDs7PbmE7PJaKKSR2oT" + } + ], + "message": "We could have coronavirus...but we also have carbonara pasta like this one!! Do you ever try it?? 🇮🇹 #thatsamore", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-08T09:20:16.784Z", + "creator": "desmos1wsk63dkefrefxpq0k0fe27gx9lcz0gmg0pll7s", + "id": "e2c651aec74109c88a6bfa770f76eea368b506896c9b9c0c7532a48243bb384a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "https://www.youtube.com/watch?v=qgylp3Td1Bw", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T17:09:10.066Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "e73d391ee8e0daec8378747ccf1ab947d489182bf172496a9609492cebbe67a0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "No OnE nEeDs DECentralZd SoCial MeDIa\n\nhttps://twitter.com/jonathanwilson/status/1227756917394755584\n\nNothing to see here move along.\n\nopen access to information and networks endangers our health and well being because then rumors can be propogated. \n\nright?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T10:11:30.583Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "e7938f035cb746a9c59c67f1195164e6d8bcb9779f506e65e238fa10a23e572c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "it should work now", + "parent_id": "4cb48fdecb39e736588aa342e3838a37f379b3308ccd1dc5d347ee159213cbea", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-24T14:21:04.161740078Z", + "creator": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "id": "e7b30662726f150b89748d6ed9ac29c9d732268b659a79d8c7318082a6deb687", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello people!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2020-04-22T06:43:42.281Z", + "creator": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "id": "e81ee7fdd2b286c3d092d5fc152319801ef650b4683415f2ec622071e7ca8772", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmUzjWtJ1c2xbshVbuvRsHBEMzmYJbbUn1MsE1JyPHf4Eq" + } + ], + "message": "hi", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-19T12:44:53.742Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "e8271575e3f8f6556ff904751f5aeed290f925de3d0517c4f60ba263ea1cbfe7", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmXxrBoRG9hM7NyjmcueTiFhxqTxHXYVW18eSBbeFMUS6n" + } + ], + "message": "buy bitcoin", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-27T03:07:13.605Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "e9300912e39fdbb6fbec3abe1e4244d3e898822547ddc3de855c7c0ecd53ae97", + "last_edited": "0001-01-01T00:00:00Z", + "message": "buy bitcoin", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-27T00:49:04.03384Z", + "creator": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "id": "ea39ef209a8ab2d5b62966abc8421dfb7581c687ffe79d5ed997130cbeb9755a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Decentralized Social Media will usher ina new era of human freedom", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": false, + "created": "2019-12-27T15:54:34.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "ed4a0992a65d5f1b491a31a4effdb0fcbc176070b03c08c9c08b6bb4dc174b6d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "To all friends on Desmos \n\n![Happy New Year 2020](https://media0.giphy.com/media/PiiSP8kyBXqnLSAGjS/giphy.gif?cid=790b7611bc72c787b036c3acc514ce6697867936b013bb7b\u0026rid=giphy.gif)", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-17T13:45:56.967069074Z", + "creator": "desmos1u2g42tlzq9jtzldkpwpr2mxcvqaqj74eenvu25", + "id": "f06201439ad3326156ffadcc17263965660278ec8bc1a9e640b0e0093440b3eb", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World. My first ever post on dSocialNet", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-20T16:49:42.085Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "f247706913e876b87ae0f923141823137cd136eead5da7645eef8d2f5b262348", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Full of white horror these few days...", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-21T09:30:37.945713759Z", + "creator": "desmos1v9q6q82aas3vknhngmeletvzhlhk5jqpy2t39a", + "id": "f24b3cedf3d03ff878890030169b7fe1f4856832296ecbfd2821d1c2e109b88d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-05T11:15:03.959Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "f2ce4acd66b9704d2e672bc2b67da6008ded381648b75972139b30326ab04940", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This proof Mooncake has no censorship 🙏🏻", + "parent_id": "97089e51ef7170e306aa195ac3b72179f029ffb9d06797a46afbdcd74f21f362", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T14:34:16.823Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "f339b5af2c47dedf307f8f20d645bc374a2715e0dda71f6541c387ee2104bebe", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Go hiking in the dolomites!", + "parent_id": "16b5390b68a79b54aed05ab62929e04c44f11fe5b949c0bf96351714ad8bc79b", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-01T09:12:17.681Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "f45238705c9108a12efbcb0f3ec8191b78baed947e80f89bd981d22b4f52a82d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "May the mask be with you 😷", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-28T08:24:18.039Z", + "creator": "desmos1wc3m7490hl28sgl4pruu4s2jgjvlu9n4dhzf73", + "id": "f4adc73d852a7ac3bec63fea227140ebf8f6e4d7ca2e66080e27a3add6d88c57", + "last_edited": "0001-01-01T00:00:00Z", + "message": "good morning!", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T13:36:51.799Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "f8015acf7734e551a52580b5c28fdc993b0319673c9e994c69bf11c96ef0dacb", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmRM3gaShctuA7BXwGtQ2tP4zcXDWYkLjvGaVasv2MDmst" + } + ], + "message": "How is it going guys? ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-27T10:24:12.489Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "f8fd4708dd3d9170cf55457f439df4f868e205070f92886492b4e974410cec70", + "last_edited": "0001-01-01T00:00:00Z", + "message": "♡(◉Θ◉)♡", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-28T15:22:33.726Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "f913854411ddcb99b20ed600e0af04abf865b83c183d4a2cf6fadb1664e95e4c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing the new UI", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T14:15:24.343Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "fa04c2fa9aac2e7f7e651c40bc5a098bfa269f416088bafb176309a461cba9bc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "stop buying bitcoin. start buying atom.", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T19:39:30.693Z", + "creator": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "id": "fc1c4a4054e18db433f40bf3f57f86314c8cb9fcd471a833a91ada492d93132a", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/gif", + "uri": "https://ipfs.desmos.network/ipfs/QmdfPZpZcxxuFwyQhvY1pPu7PFqevHYRe9JFYB1DCEy8ju" + } + ], + "message": "🤙🏼", + "parent_id": "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-17T13:29:10.457951138Z", + "creator": "desmos1g7mzep5lfempedgcfrytrausnt8d8w889muwmm", + "id": "fc37a4267d8bd9b52a0fc27a4df6a6c542db762ee1db39f7c535591827ce048f", + "last_edited": "2020-01-17T13:56:10.209695956Z", + "message": "Hello Worlddddd", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-11T23:22:54.126Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "fcf0fa07c23cb2010449c4780e7747037b365074e1767f1694a2ab0c7058bf24", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmPz5DjqqayCHMWCHKAjavRoqJi99sfAx9kqcm6dc1VedS" + } + ], + "message": "Happy Easter decentralized friends 🐰🎈🎉", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T09:10:36.624Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "fef043036a46ea94e601cf03c4040d6eaf6524241a58f4f7e2d4a24c6ee6578f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "New post", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-24T13:58:13.026Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "ff19f4170df1ebb3d68d3730fc7496ae7b1959d24cf33005ddf7d6e84c6de7ca", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I am! 🍰🍰🍰", + "parent_id": "4618b62d42062df82a025ae0ed71829ba5c93523bbb99b3bed8c042099fe06c9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-20T12:30:14.03384Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "ff9c05b9525c75b769bf06a4def0c8346a7aa4dd393c43b9c7bcca03816a2c5e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello, Desmos!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + ], + "registered_reactions": [ + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "7279b8205d3e8256918aeda948cc926de9ed872b7de7ed34e2de246304eda0cc", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "97ea6c072211c4df2762b66a793ef01a48a03b17a6d0f160b1364eac45f8ab3c", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":100:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💯" + }, + { + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "shortcode": ":alien:", + "subspace": "61d7cb6d9c37b13b621dc6cb7c104ea75b84c1a9e7abf627e1c898c42af287ba", + "value": "https://shorturl.at/cKX19" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":astonished:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😲" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":blush:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😊" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":cat:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🐱" + }, + { + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "shortcode": ":choco:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/iksAN" + }, + { + "creator": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "shortcode": ":content:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/eHKQ1" + }, + { + "creator": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "shortcode": ":cool:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://imgur.com/KrQks6T" + }, + { + "creator": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "shortcode": ":des:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://imgur.com/jsw6iBv" + }, + { + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "shortcode": ":dev:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/MUZ49" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":dizzy:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💫" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":dizzy_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😵" + }, + { + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "shortcode": ":dog:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/ipyQS" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":dove:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🕊" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":dragon:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🐉" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":face_vomiting:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤮" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":face_with_head-bandage:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤕" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":face_with_rolling_eyes:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙄" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":feet:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🐾" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":fire:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "🔥" + }, + { + "creator": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "shortcode": ":fire:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/kHY38" + }, + { + "creator": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "shortcode": ":fire:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36f", + "value": "https://shorturl.at/epMTX" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":flag_ceuta__melilla:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🇪🇦" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":grin:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😁" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":grinning:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😀" + }, + { + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "shortcode": ":grinning:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://emojipedia.org/grinning-face/" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":hankey:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "💩" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":headphones:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🎧" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "601af7eb15aafa4ad5f927797808923d5b42a5baa2cfad5286c6831ae556c560", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "6ff67fe04c7dadd1ad005667b49d01980d561a2c6941ad45dc9b2e8181c89497", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "89b95d1d9870fcec00dee38f69f2abf42248d1dabdf1f8b09215bdb4827df286", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "efa8de93093dc20a40c6422cfa77931867ec0250567c04e476bbc02327206a75", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart_eyes:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart_eyes_cat:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😻" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heartpulse:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💗" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":horse_racing:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🏇" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":hugging_face:", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "value": "🤗" + }, + { + "creator": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "shortcode": ":inchain:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://i.imgur.com/LI85WjO.jpg" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":innocent:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😇" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":joy:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😂" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":laughing:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😆" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":lion:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🦁" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":lollipop:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🍭" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":mask:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😷" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":money-mouth_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤑" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":moon_cake:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🥮" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":muscle:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "💪" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":muscle:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💪" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":orange_heart:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🧡" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":partying_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🥳" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":pensive:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😔" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rabbit:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🐰" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rainbow:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🌈" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":relaxed:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "☺" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rocket:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🚀" + }, + { + "creator": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "shortcode": ":rocket:", + "subspace": "c58dd0a3760008c901839e21a0a5ae6cc92e3765513823ca9553e6ef5f733b36", + "value": "https://shorturl.at/sBEFT" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rolling_on_the_floor_laughing:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤣" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rolling_on_the_floor_laughing:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🤣" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rose:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🌹" + }, + { + "creator": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "shortcode": ":simply-vc:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://s3.amazonaws.com/keybase_processed_uploads/832fd8e95710fb345f084afb8aeace05_360_360.jpg" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":skull_and_crossbones:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "☠" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":slightly_smiling_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙂" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":slightly_smiling_face:", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "value": "🙂" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":smile:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😄" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":smiley:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "😃" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":smiley:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😃" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":smiling_face_with_hearts:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🥰" + }, + { + "creator": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "shortcode": ":snowman:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://www.emoji.co.uk/files/microsoft-emojis/animals-nature-windows10/8786-snowman.png" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":space_invader:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "👾" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":sparkling_heart:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💖" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":speak_no_evil:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙊" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":star-struck:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤩" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":star-struck:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🤩" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":sunglasses:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😎" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":sunny:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "☀" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":sweat_smile:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😅" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":tada:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🎉" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":thinking_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤔" + }, + { + "creator": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "shortcode": ":this-is-fine-fire-2:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/fmLX1" + }, + { + "creator": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "shortcode": ":this-is-fine-fire:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/fmLX1" + }, + { + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "shortcode": ":this_is_m24_logo:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/ehNQ8" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":tulip:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🌷" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":upside-down_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙃" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":v:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "✌" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":wink:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😉" + }, + { + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "shortcode": ":wink:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://emojipedia.org/winking-face/" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":woman_raising_hand:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙋‍♀" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":yum:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😋" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":zany_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤪" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":zipper-mouth_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤐" + } + ], + "users_poll_answers": { + "03aef4fb393caad1f0ccf66246d0e930a97b316d30f19c22b65b1c6f87eda69b": [ + { + "answers": [ + "1" + ], + "user": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u" + }, + { + "answers": [ + "0" + ], + "user": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys" + } + ], + "1d3d82c03c623e924808d0c93b25cab75ca229e121f769a45f0095385ed2bff4": [ + { + "answers": [ + "0" + ], + "user": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0" + }, + { + "answers": [ + "0" + ], + "user": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d" + } + ], + "41b9c2bc13fb40b57a4fb99000f37467b982ac78011af504df612f874276eece": [ + { + "answers": [ + "0" + ], + "user": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr" + } + ], + "46a862c166f1c9fe541e42e0c1c1aa9adf8aa812ec90076aec4322b25f9f59b5": [ + { + "answers": [ + "0" + ], + "user": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m" + } + ], + "48cd7144d6c3280be5020cb8d40812894edf859dc7645c907cb9313a627f7050": [ + { + "answers": [ + "2" + ], + "user": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r" + } + ], + "4cea3a170718b2cb9867bc50f7d4c9f2318339263f1bea94e09690a16cc13149": [ + { + "answers": [ + "1" + ], + "user": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2" + } + ], + "519213999810445110bdafb80a6b5c12dea3cc0d3a68dd1f972fb5816c4eebdd": [ + { + "answers": [ + "0" + ], + "user": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl" + } + ], + "51c7f17dc7342451e98b2c0f143a6930b22a6f95e443c24f966071a57886c48b": [ + { + "answers": [ + "1" + ], + "user": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr" + } + ], + "59235f11dac3f7af2237ac1a325e4fb216fcb753f8f6c4ca71f004286bc1dd22": [ + { + "answers": [ + "1" + ], + "user": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg" + } + ], + "5dcf020aab00542a99c123fedcbbf2c83bca0a412a9b7179bfe1d11d387817b6": [ + { + "answers": [ + "0" + ], + "user": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx" + } + ], + "6a2d7b53a1fb31cdd57b5542aa36d91feb17a09dab6ed0a043d7cd6a704f40da": [ + { + "answers": [ + "0" + ], + "user": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz" + }, + { + "answers": [ + "1" + ], + "user": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3" + } + ], + "78b1c48557424fc8b47aa228e71e1b4b526b7efe10c63378a6e5ac828f1ac0e5": [ + { + "answers": [ + "0" + ], + "user": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj" + } + ], + "81160ce863272960fbf5a88a831e6f0a0bcdd3c02aad3989f98dee39ac53d007": [ + { + "answers": [ + "0" + ], + "user": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp" + } + ], + "aedd58749b14053baa507bc84760fe9a15dfb210e6e016d2cdf1095e49d618d5": [ + { + "answers": [ + "1" + ], + "user": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d" + }, + { + "answers": [ + "1" + ], + "user": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc" + }, + { + "answers": [ + "2" + ], + "user": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn" + }, + { + "answers": [ + "2" + ], + "user": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u" + } + ], + "ba73f3622933abdd6ff22e11642260cb29cd1a13651faa0a0d6e277923adcd0f": [ + { + "answers": [ + "1" + ], + "user": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa" + }, + { + "answers": [ + "1" + ], + "user": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u" + } + ], + "c643dd0c40b89e46f6dbb91d372f3b8e05cb39a56c8728e17d3ef85375e9fa64": [ + { + "answers": [ + "5" + ], + "user": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra" + } + ], + "d0fb59f466329ac34cad828d8d34ca840f1606ed40212bf4447d568a2fec7bb9": [ + { + "answers": [ + "2" + ], + "user": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4" + } + ], + "d26028d560ea75e5841a311cfc99eaf932c163865f4a274a084981fb2e3b4af3": [ + { + "answers": [ + "0" + ], + "user": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6" + } + ], + "d521ed763fb2384971c9a854a8b091952bf50e010476fc5047b2085a95060e75": [ + { + "answers": [ + "1" + ], + "user": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e" + } + ], + "dc80300efd795d96e060cf1d8583ed442aca4eb8ad140af8f38ac709a3fd3454": [ + { + "answers": [ + "1" + ], + "user": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj" + } + ], + "dce6de6dfcdc03735d760b03cf8666160353271a10916daac5cf66aa339b24ba": [ + { + "answers": [ + "1" + ], + "user": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm" + }, + { + "answers": [ + "0" + ], + "user": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd" + } + ] + } + }, + "profile": { + "profiles": [ + { + "creator": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "moniker": "mike.snowman", + "name": "Mike", + "surname": "Snowman" + }, + { + "bio": "Desmos validator", + "creator": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "moniker": "desmosval", + "name": "desmos", + "pictures": { + "cover": "https://imgur.com/H0Ynz1M", + "profile": "https://imgur.com/RWNuDbt" + }, + "surname": "val" + }, + { + "bio": "KalpaTech dev guy", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "moniker": "GOLDel | KalpaTech", + "name": "Aurel", + "pictures": { + "cover": "https://shorturl.at/fuCLM", + "profile": "https://shorturl.at/bvxX4" + }, + "surname": "Simion" + }, + { + "bio": "Cosmostation Developer", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "moniker": "JayB.Kim", + "name": "JayB", + "pictures": { + "cover": "https://github.com/kogisin", + "profile": "https://github.com/kogisin" + }, + "surname": "Kim" + }, + { + "bio": "blockchain developer | team blocksccape", + "creator": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "moniker": "marcel.mws", + "name": "Marcel", + "pictures": { + "cover": "https://keybase.io/blockscapeval", + "profile": "https://keybase.io/blockscapeval" + }, + "surname": "mws" + }, + { + "bio": "My initial name is S.", + "creator": "desmos1d4kmuml2m6254r2amhgd6p5xaqyy5fu0pcha72", + "moniker": "IamS", + "name": "Iam", + "pictures": { + "cover": "https://i.ibb.co/KyBZFp8/20200508-122959.png", + "profile": "https://i.ibb.co/KyBZFp8/20200508-122959.png" + }, + "surname": "S." + }, + { + "bio": "Hi, I am a freelancer looking to explore decentralized social networks", + "creator": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "moniker": "Cookpro.Man", + "name": "Cookpro", + "pictures": { + "cover": "https://shorturl.at/oIJKU", + "profile": "https://shorturl.at/oIJKU" + }, + "surname": "Man" + }, + { + "bio": "DesmosIW testnet validator", + "creator": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "moniker": "desmosIW", + "name": "desmos", + "pictures": { + "cover": "https://imgur.com/5Nx5vdT", + "profile": "https://imgur.com/jsw6iBv" + }, + "surname": "IW" + }, + { + "bio": "Simply VC runs highly reliable and secure infrastructure in our own datacentre in Malta, built with the aim of supporting the growth of the blockchain ecosystem.", + "creator": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "moniker": "simply.vc", + "name": "Simply VC", + "pictures": { + "cover": "https://pbs.twimg.com/profile_banners/933276900440641537/1565686922/1500x500", + "profile": "https://pbs.twimg.com/profile_images/1161203324630249472/BwmjS8IM_400x400.jpg" + } + }, + { + "bio": "Validator", + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "moniker": "Masternode24.de", + "name": "Alexander", + "pictures": { + "cover": "https://shorturl.at/fAJMX", + "profile": "https://shorturl.at/jloKX" + }, + "surname": "Buterus" + }, + { + "bio": "Desmos Architect", + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "moniker": "ChainodeTech", + "name": "Ionut", + "pictures": { + "cover": "https://www.chainode.tech/img/logo.svg", + "profile": "https://www.chainode.tech/img/team/Ionut.png" + }, + "surname": "S." + }, + { + "creator": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "moniker": "kappa", + "name": "Kaustubh", + "surname": "Kapatral" + }, + { + "bio": "Desmos blogger", + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "moniker": "Cyberili", + "name": "Cyberili", + "pictures": { + "cover": "https://example.com/cover.jpg", + "profile": "https://example.com/profile.jpg" + }, + "surname": "Ili" + }, + { + "bio": "Trusted \u0026 Secure validator", + "creator": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "moniker": "InchainWorks", + "name": "Inchain", + "pictures": { + "cover": "https://imgur.com/SVjiFdr", + "profile": "https://i.imgur.com/LI85WjO.jpg" + }, + "surname": "Works" + }, + { + "bio": "TBD", + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "moniker": "Mr_S", + "name": "Mr S", + "pictures": { + "cover": "https://dummyimage.com/1200x800/000/", + "profile": "https://dummyimage.com/600x400/000/fff\u0026text=Mr.+S." + } + } + ] + }, + "slashing": { + "missed_blocks": { + "desmosvalcons13tssslsz0wn0jw2whypvyy57pyxt7aksul4edu": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons15kc3sr8re2xl5mj5df5dq543hz28mjkg8h5qgj": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons16e82c0qtlg8fsazgrmkncvfphmglpejg6gatz5": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons16fww3gd0p2sgunwexympn5x8cxjartt456a4mx": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1785njjxnay4pwd8w592xdx4rqptdy5h3cvr0a2": [ + { + "index": "6", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + } + ], + "desmosvalcons17txgcuy9g4jy59en599anqy086h3h22l2gmt27": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons17uwyf238ykjg2at63uc5nm2k7xqxyxk37f8zkd": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons19pc8sk3kqsqc83f57m65xwjvraq8l26ftfe0xr": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1a48zyjsq5n07e0jqvxjup4vge4pvxdt9unkce0": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1aak9vdqqn35wc655zwl29wtfnsp8cw9gu2awvt": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "704", + "missed": false + } + ], + "desmosvalcons1adduk8rnjd642axkhavlnan2huxfhlmdyar0ly": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1arakyvwlhac9flyves3c07634cxsulrdjzcwne": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1c29eyczh5lw4npe0a9n40nm5g299fq8nt5lerw": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1crr2fr40gj3hqqq7kcn84ec84r7ykwm7mc7d7x": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1d8pcgv38fkczqk8ka543eyc5tx6emwsjslmde0": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1fxl3av27g93nw8jqjnm2344jffs7cmgu43676a": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1g5895s4my026q6xmjcullh2smw4tf8w93fztsn": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1hkvz89vzj3y44d9fz0k4yqw5lv4ah84vznqgsp": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1jk4x2969x7wd680zw6alyke8cftlxngvlww57t": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1jk63tv9pplzs8l7gqk308mchh7p70eptjpzx96": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + } + ], + "desmosvalcons1jmp6rwg46c6x2nl3nrnczudzg9zdlf39d34ttl": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "21", + "missed": false + } + ], + "desmosvalcons1k0nxu0r7rssxf86wyemn369yazzjry7dsfmcs0": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1k6wks6q2gr467n8te3v76k4paf9xylhrq3rgzm": [ + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "605", + "missed": false + } + ], + "desmosvalcons1ktp5mu8h28mxhrkygw7mys8tl5f67yv46tdzvy": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + }, + { + "index": "2", + "missed": true + }, + { + "index": "3", + "missed": true + }, + { + "index": "4", + "missed": true + }, + { + "index": "5", + "missed": true + }, + { + "index": "6", + "missed": true + }, + { + "index": "7", + "missed": true + }, + { + "index": "8", + "missed": true + }, + { + "index": "9", + "missed": true + }, + { + "index": "10", + "missed": true + }, + { + "index": "11", + "missed": true + }, + { + "index": "12", + "missed": true + }, + { + "index": "13", + "missed": true + }, + { + "index": "14", + "missed": true + }, + { + "index": "15", + "missed": true + }, + { + "index": "16", + "missed": true + }, + { + "index": "17", + "missed": true + }, + { + "index": "18", + "missed": true + }, + { + "index": "19", + "missed": true + }, + { + "index": "20", + "missed": true + }, + { + "index": "21", + "missed": true + }, + { + "index": "22", + "missed": true + }, + { + "index": "23", + "missed": true + }, + { + "index": "24", + "missed": true + }, + { + "index": "25", + "missed": true + }, + { + "index": "26", + "missed": true + }, + { + "index": "27", + "missed": true + }, + { + "index": "28", + "missed": true + }, + { + "index": "29", + "missed": true + }, + { + "index": "30", + "missed": true + }, + { + "index": "31", + "missed": true + }, + { + "index": "32", + "missed": true + }, + { + "index": "33", + "missed": true + }, + { + "index": "34", + "missed": true + }, + { + "index": "35", + "missed": true + }, + { + "index": "36", + "missed": true + }, + { + "index": "37", + "missed": true + }, + { + "index": "38", + "missed": true + }, + { + "index": "39", + "missed": true + }, + { + "index": "40", + "missed": true + }, + { + "index": "41", + "missed": true + }, + { + "index": "42", + "missed": true + }, + { + "index": "43", + "missed": true + }, + { + "index": "44", + "missed": true + }, + { + "index": "45", + "missed": true + }, + { + "index": "46", + "missed": true + }, + { + "index": "47", + "missed": true + }, + { + "index": "48", + "missed": true + }, + { + "index": "49", + "missed": true + }, + { + "index": "50", + "missed": true + }, + { + "index": "51", + "missed": true + }, + { + "index": "52", + "missed": true + }, + { + "index": "53", + "missed": true + }, + { + "index": "54", + "missed": true + }, + { + "index": "55", + "missed": true + }, + { + "index": "56", + "missed": true + }, + { + "index": "57", + "missed": true + }, + { + "index": "58", + "missed": true + }, + { + "index": "59", + "missed": true + }, + { + "index": "60", + "missed": true + }, + { + "index": "61", + "missed": true + }, + { + "index": "62", + "missed": true + }, + { + "index": "63", + "missed": true + }, + { + "index": "64", + "missed": true + }, + { + "index": "65", + "missed": true + }, + { + "index": "66", + "missed": true + }, + { + "index": "67", + "missed": true + }, + { + "index": "68", + "missed": true + }, + { + "index": "69", + "missed": true + }, + { + "index": "70", + "missed": true + }, + { + "index": "71", + "missed": true + }, + { + "index": "72", + "missed": true + }, + { + "index": "73", + "missed": true + }, + { + "index": "74", + "missed": true + }, + { + "index": "75", + "missed": true + }, + { + "index": "76", + "missed": true + }, + { + "index": "77", + "missed": true + }, + { + "index": "78", + "missed": true + }, + { + "index": "79", + "missed": true + }, + { + "index": "80", + "missed": true + }, + { + "index": "81", + "missed": true + }, + { + "index": "82", + "missed": true + }, + { + "index": "83", + "missed": true + }, + { + "index": "84", + "missed": true + }, + { + "index": "85", + "missed": true + }, + { + "index": "86", + "missed": true + }, + { + "index": "87", + "missed": true + }, + { + "index": "88", + "missed": true + }, + { + "index": "89", + "missed": true + }, + { + "index": "90", + "missed": true + }, + { + "index": "91", + "missed": true + }, + { + "index": "92", + "missed": true + }, + { + "index": "93", + "missed": true + }, + { + "index": "94", + "missed": true + }, + { + "index": "95", + "missed": true + }, + { + "index": "96", + "missed": true + }, + { + "index": "97", + "missed": true + }, + { + "index": "98", + "missed": true + }, + { + "index": "99", + "missed": true + }, + { + "index": "100", + "missed": true + }, + { + "index": "101", + "missed": true + }, + { + "index": "102", + "missed": true + }, + { + "index": "103", + "missed": true + }, + { + "index": "104", + "missed": true + }, + { + "index": "105", + "missed": true + }, + { + "index": "106", + "missed": true + }, + { + "index": "107", + "missed": true + }, + { + "index": "108", + "missed": true + }, + { + "index": "109", + "missed": true + }, + { + "index": "110", + "missed": true + }, + { + "index": "111", + "missed": true + }, + { + "index": "112", + "missed": true + }, + { + "index": "113", + "missed": true + }, + { + "index": "114", + "missed": true + }, + { + "index": "115", + "missed": true + }, + { + "index": "116", + "missed": true + }, + { + "index": "117", + "missed": true + }, + { + "index": "118", + "missed": true + }, + { + "index": "119", + "missed": true + }, + { + "index": "120", + "missed": true + }, + { + "index": "121", + "missed": true + }, + { + "index": "122", + "missed": true + }, + { + "index": "123", + "missed": true + }, + { + "index": "124", + "missed": true + }, + { + "index": "125", + "missed": true + }, + { + "index": "126", + "missed": true + }, + { + "index": "127", + "missed": true + }, + { + "index": "128", + "missed": true + }, + { + "index": "129", + "missed": true + }, + { + "index": "130", + "missed": true + }, + { + "index": "131", + "missed": true + }, + { + "index": "132", + "missed": true + }, + { + "index": "133", + "missed": true + }, + { + "index": "134", + "missed": true + }, + { + "index": "135", + "missed": true + }, + { + "index": "136", + "missed": true + }, + { + "index": "137", + "missed": true + }, + { + "index": "138", + "missed": true + }, + { + "index": "139", + "missed": true + }, + { + "index": "140", + "missed": true + }, + { + "index": "141", + "missed": true + }, + { + "index": "142", + "missed": true + }, + { + "index": "143", + "missed": true + }, + { + "index": "144", + "missed": true + }, + { + "index": "145", + "missed": true + }, + { + "index": "146", + "missed": true + }, + { + "index": "147", + "missed": true + }, + { + "index": "148", + "missed": true + }, + { + "index": "149", + "missed": true + }, + { + "index": "150", + "missed": true + }, + { + "index": "151", + "missed": true + }, + { + "index": "152", + "missed": true + }, + { + "index": "153", + "missed": true + }, + { + "index": "154", + "missed": true + }, + { + "index": "155", + "missed": true + }, + { + "index": "156", + "missed": true + }, + { + "index": "157", + "missed": true + }, + { + "index": "158", + "missed": true + }, + { + "index": "159", + "missed": true + }, + { + "index": "160", + "missed": true + }, + { + "index": "161", + "missed": true + }, + { + "index": "162", + "missed": true + }, + { + "index": "163", + "missed": true + }, + { + "index": "164", + "missed": true + }, + { + "index": "165", + "missed": true + }, + { + "index": "166", + "missed": true + }, + { + "index": "167", + "missed": true + }, + { + "index": "168", + "missed": true + }, + { + "index": "169", + "missed": true + }, + { + "index": "170", + "missed": true + }, + { + "index": "171", + "missed": true + }, + { + "index": "172", + "missed": true + }, + { + "index": "173", + "missed": true + }, + { + "index": "174", + "missed": true + }, + { + "index": "175", + "missed": true + }, + { + "index": "176", + "missed": true + }, + { + "index": "177", + "missed": true + }, + { + "index": "178", + "missed": true + }, + { + "index": "179", + "missed": true + }, + { + "index": "180", + "missed": true + }, + { + "index": "181", + "missed": true + }, + { + "index": "182", + "missed": true + }, + { + "index": "183", + "missed": true + }, + { + "index": "184", + "missed": true + }, + { + "index": "185", + "missed": true + }, + { + "index": "186", + "missed": true + }, + { + "index": "187", + "missed": true + }, + { + "index": "188", + "missed": true + }, + { + "index": "189", + "missed": true + }, + { + "index": "190", + "missed": true + }, + { + "index": "191", + "missed": true + }, + { + "index": "192", + "missed": true + }, + { + "index": "193", + "missed": true + }, + { + "index": "194", + "missed": true + }, + { + "index": "195", + "missed": true + }, + { + "index": "196", + "missed": true + }, + { + "index": "197", + "missed": true + }, + { + "index": "198", + "missed": true + }, + { + "index": "199", + "missed": true + }, + { + "index": "200", + "missed": true + }, + { + "index": "201", + "missed": true + }, + { + "index": "202", + "missed": true + }, + { + "index": "203", + "missed": true + }, + { + "index": "204", + "missed": true + }, + { + "index": "205", + "missed": true + }, + { + "index": "206", + "missed": true + }, + { + "index": "207", + "missed": true + }, + { + "index": "208", + "missed": true + }, + { + "index": "209", + "missed": true + }, + { + "index": "210", + "missed": true + }, + { + "index": "211", + "missed": true + }, + { + "index": "212", + "missed": true + }, + { + "index": "213", + "missed": true + }, + { + "index": "214", + "missed": true + }, + { + "index": "215", + "missed": true + }, + { + "index": "216", + "missed": true + }, + { + "index": "217", + "missed": true + }, + { + "index": "218", + "missed": true + }, + { + "index": "219", + "missed": true + }, + { + "index": "220", + "missed": true + }, + { + "index": "221", + "missed": true + }, + { + "index": "222", + "missed": true + }, + { + "index": "223", + "missed": true + }, + { + "index": "224", + "missed": true + }, + { + "index": "225", + "missed": true + }, + { + "index": "226", + "missed": true + }, + { + "index": "227", + "missed": true + }, + { + "index": "228", + "missed": true + }, + { + "index": "229", + "missed": true + }, + { + "index": "230", + "missed": true + }, + { + "index": "231", + "missed": true + }, + { + "index": "232", + "missed": true + }, + { + "index": "233", + "missed": true + }, + { + "index": "234", + "missed": true + }, + { + "index": "235", + "missed": true + }, + { + "index": "236", + "missed": true + }, + { + "index": "237", + "missed": true + }, + { + "index": "238", + "missed": true + }, + { + "index": "239", + "missed": true + }, + { + "index": "240", + "missed": true + }, + { + "index": "241", + "missed": true + }, + { + "index": "242", + "missed": true + }, + { + "index": "243", + "missed": true + }, + { + "index": "244", + "missed": true + }, + { + "index": "245", + "missed": true + }, + { + "index": "246", + "missed": true + }, + { + "index": "247", + "missed": true + }, + { + "index": "248", + "missed": true + }, + { + "index": "249", + "missed": true + }, + { + "index": "250", + "missed": true + }, + { + "index": "251", + "missed": true + }, + { + "index": "252", + "missed": true + }, + { + "index": "253", + "missed": true + }, + { + "index": "254", + "missed": true + }, + { + "index": "255", + "missed": true + }, + { + "index": "256", + "missed": true + }, + { + "index": "257", + "missed": true + }, + { + "index": "258", + "missed": true + }, + { + "index": "259", + "missed": true + }, + { + "index": "260", + "missed": true + }, + { + "index": "261", + "missed": true + }, + { + "index": "262", + "missed": true + }, + { + "index": "263", + "missed": true + }, + { + "index": "264", + "missed": true + }, + { + "index": "265", + "missed": true + }, + { + "index": "266", + "missed": true + }, + { + "index": "267", + "missed": true + }, + { + "index": "268", + "missed": true + }, + { + "index": "269", + "missed": true + }, + { + "index": "270", + "missed": true + }, + { + "index": "271", + "missed": true + }, + { + "index": "272", + "missed": true + }, + { + "index": "273", + "missed": true + }, + { + "index": "274", + "missed": true + }, + { + "index": "275", + "missed": true + }, + { + "index": "276", + "missed": true + }, + { + "index": "277", + "missed": true + }, + { + "index": "278", + "missed": true + }, + { + "index": "279", + "missed": true + }, + { + "index": "280", + "missed": true + }, + { + "index": "281", + "missed": true + }, + { + "index": "282", + "missed": true + }, + { + "index": "283", + "missed": true + }, + { + "index": "284", + "missed": true + }, + { + "index": "285", + "missed": true + }, + { + "index": "286", + "missed": true + }, + { + "index": "287", + "missed": true + }, + { + "index": "288", + "missed": true + }, + { + "index": "289", + "missed": true + }, + { + "index": "290", + "missed": true + }, + { + "index": "291", + "missed": true + }, + { + "index": "292", + "missed": true + }, + { + "index": "293", + "missed": true + }, + { + "index": "294", + "missed": true + }, + { + "index": "295", + "missed": true + }, + { + "index": "296", + "missed": true + }, + { + "index": "297", + "missed": true + }, + { + "index": "298", + "missed": true + }, + { + "index": "299", + "missed": true + }, + { + "index": "300", + "missed": true + }, + { + "index": "301", + "missed": true + }, + { + "index": "302", + "missed": true + }, + { + "index": "303", + "missed": true + }, + { + "index": "304", + "missed": true + }, + { + "index": "305", + "missed": true + }, + { + "index": "306", + "missed": true + }, + { + "index": "307", + "missed": true + }, + { + "index": "308", + "missed": true + }, + { + "index": "309", + "missed": true + }, + { + "index": "310", + "missed": true + }, + { + "index": "311", + "missed": true + }, + { + "index": "312", + "missed": true + }, + { + "index": "313", + "missed": true + }, + { + "index": "314", + "missed": true + }, + { + "index": "315", + "missed": true + }, + { + "index": "316", + "missed": true + }, + { + "index": "317", + "missed": true + }, + { + "index": "318", + "missed": true + }, + { + "index": "319", + "missed": true + }, + { + "index": "320", + "missed": true + }, + { + "index": "321", + "missed": true + }, + { + "index": "322", + "missed": true + }, + { + "index": "323", + "missed": true + }, + { + "index": "324", + "missed": true + }, + { + "index": "325", + "missed": true + }, + { + "index": "326", + "missed": true + }, + { + "index": "327", + "missed": true + }, + { + "index": "328", + "missed": true + }, + { + "index": "329", + "missed": true + }, + { + "index": "330", + "missed": true + }, + { + "index": "331", + "missed": true + }, + { + "index": "332", + "missed": true + }, + { + "index": "333", + "missed": true + }, + { + "index": "334", + "missed": true + }, + { + "index": "335", + "missed": true + }, + { + "index": "336", + "missed": true + }, + { + "index": "337", + "missed": true + }, + { + "index": "338", + "missed": true + }, + { + "index": "339", + "missed": true + }, + { + "index": "340", + "missed": true + }, + { + "index": "341", + "missed": true + }, + { + "index": "342", + "missed": true + }, + { + "index": "343", + "missed": true + }, + { + "index": "344", + "missed": true + }, + { + "index": "345", + "missed": true + }, + { + "index": "346", + "missed": true + }, + { + "index": "347", + "missed": true + }, + { + "index": "348", + "missed": true + }, + { + "index": "349", + "missed": true + }, + { + "index": "350", + "missed": true + }, + { + "index": "351", + "missed": true + }, + { + "index": "352", + "missed": true + }, + { + "index": "353", + "missed": true + }, + { + "index": "354", + "missed": true + }, + { + "index": "355", + "missed": true + }, + { + "index": "356", + "missed": true + }, + { + "index": "357", + "missed": true + }, + { + "index": "358", + "missed": true + }, + { + "index": "359", + "missed": true + }, + { + "index": "360", + "missed": true + }, + { + "index": "361", + "missed": true + }, + { + "index": "362", + "missed": true + }, + { + "index": "363", + "missed": true + }, + { + "index": "364", + "missed": true + }, + { + "index": "365", + "missed": true + }, + { + "index": "366", + "missed": true + }, + { + "index": "367", + "missed": true + }, + { + "index": "368", + "missed": true + }, + { + "index": "369", + "missed": true + }, + { + "index": "370", + "missed": true + }, + { + "index": "371", + "missed": true + }, + { + "index": "372", + "missed": true + }, + { + "index": "373", + "missed": true + }, + { + "index": "374", + "missed": true + }, + { + "index": "375", + "missed": true + }, + { + "index": "376", + "missed": true + }, + { + "index": "377", + "missed": true + }, + { + "index": "378", + "missed": true + }, + { + "index": "379", + "missed": true + }, + { + "index": "380", + "missed": true + }, + { + "index": "381", + "missed": true + }, + { + "index": "382", + "missed": true + }, + { + "index": "383", + "missed": true + }, + { + "index": "384", + "missed": true + }, + { + "index": "385", + "missed": true + }, + { + "index": "386", + "missed": true + }, + { + "index": "387", + "missed": true + }, + { + "index": "388", + "missed": true + }, + { + "index": "389", + "missed": true + }, + { + "index": "390", + "missed": true + }, + { + "index": "391", + "missed": true + }, + { + "index": "392", + "missed": true + }, + { + "index": "393", + "missed": true + }, + { + "index": "394", + "missed": true + }, + { + "index": "395", + "missed": true + }, + { + "index": "396", + "missed": true + }, + { + "index": "397", + "missed": true + }, + { + "index": "398", + "missed": true + }, + { + "index": "399", + "missed": true + }, + { + "index": "400", + "missed": true + }, + { + "index": "401", + "missed": true + }, + { + "index": "402", + "missed": true + }, + { + "index": "403", + "missed": true + }, + { + "index": "404", + "missed": true + }, + { + "index": "405", + "missed": true + }, + { + "index": "406", + "missed": true + }, + { + "index": "407", + "missed": true + }, + { + "index": "408", + "missed": true + }, + { + "index": "409", + "missed": true + }, + { + "index": "410", + "missed": true + }, + { + "index": "411", + "missed": true + }, + { + "index": "412", + "missed": true + }, + { + "index": "413", + "missed": true + }, + { + "index": "414", + "missed": true + }, + { + "index": "415", + "missed": true + }, + { + "index": "416", + "missed": true + }, + { + "index": "417", + "missed": true + }, + { + "index": "418", + "missed": true + }, + { + "index": "419", + "missed": true + }, + { + "index": "420", + "missed": true + }, + { + "index": "421", + "missed": true + }, + { + "index": "422", + "missed": true + }, + { + "index": "423", + "missed": true + }, + { + "index": "424", + "missed": true + }, + { + "index": "425", + "missed": true + }, + { + "index": "426", + "missed": true + }, + { + "index": "427", + "missed": true + }, + { + "index": "428", + "missed": true + }, + { + "index": "429", + "missed": true + }, + { + "index": "430", + "missed": true + }, + { + "index": "431", + "missed": true + }, + { + "index": "432", + "missed": true + }, + { + "index": "433", + "missed": true + }, + { + "index": "434", + "missed": true + }, + { + "index": "435", + "missed": true + }, + { + "index": "436", + "missed": true + }, + { + "index": "437", + "missed": true + }, + { + "index": "438", + "missed": true + }, + { + "index": "439", + "missed": true + }, + { + "index": "440", + "missed": true + }, + { + "index": "441", + "missed": true + }, + { + "index": "442", + "missed": true + }, + { + "index": "443", + "missed": true + }, + { + "index": "444", + "missed": true + }, + { + "index": "445", + "missed": true + }, + { + "index": "446", + "missed": true + }, + { + "index": "447", + "missed": true + }, + { + "index": "448", + "missed": true + }, + { + "index": "449", + "missed": true + }, + { + "index": "450", + "missed": true + }, + { + "index": "451", + "missed": true + }, + { + "index": "452", + "missed": true + }, + { + "index": "453", + "missed": true + }, + { + "index": "454", + "missed": true + }, + { + "index": "455", + "missed": true + }, + { + "index": "456", + "missed": true + }, + { + "index": "457", + "missed": true + }, + { + "index": "458", + "missed": true + }, + { + "index": "459", + "missed": true + }, + { + "index": "460", + "missed": true + }, + { + "index": "461", + "missed": true + }, + { + "index": "462", + "missed": true + }, + { + "index": "463", + "missed": true + }, + { + "index": "464", + "missed": true + }, + { + "index": "465", + "missed": true + }, + { + "index": "466", + "missed": true + }, + { + "index": "467", + "missed": true + }, + { + "index": "468", + "missed": true + }, + { + "index": "469", + "missed": true + }, + { + "index": "470", + "missed": true + }, + { + "index": "471", + "missed": true + }, + { + "index": "472", + "missed": true + }, + { + "index": "473", + "missed": true + }, + { + "index": "474", + "missed": true + }, + { + "index": "475", + "missed": true + }, + { + "index": "476", + "missed": true + }, + { + "index": "477", + "missed": true + }, + { + "index": "478", + "missed": true + }, + { + "index": "479", + "missed": true + }, + { + "index": "480", + "missed": true + }, + { + "index": "481", + "missed": true + }, + { + "index": "482", + "missed": true + }, + { + "index": "483", + "missed": true + }, + { + "index": "484", + "missed": true + }, + { + "index": "485", + "missed": true + }, + { + "index": "486", + "missed": true + }, + { + "index": "487", + "missed": true + }, + { + "index": "488", + "missed": true + }, + { + "index": "489", + "missed": true + }, + { + "index": "490", + "missed": true + }, + { + "index": "491", + "missed": true + }, + { + "index": "492", + "missed": true + }, + { + "index": "493", + "missed": true + }, + { + "index": "494", + "missed": true + }, + { + "index": "495", + "missed": true + }, + { + "index": "496", + "missed": true + }, + { + "index": "497", + "missed": true + }, + { + "index": "498", + "missed": true + }, + { + "index": "499", + "missed": true + }, + { + "index": "500", + "missed": true + }, + { + "index": "501", + "missed": true + }, + { + "index": "502", + "missed": true + }, + { + "index": "503", + "missed": true + }, + { + "index": "504", + "missed": true + }, + { + "index": "505", + "missed": true + }, + { + "index": "506", + "missed": true + }, + { + "index": "507", + "missed": true + }, + { + "index": "508", + "missed": true + }, + { + "index": "509", + "missed": true + }, + { + "index": "510", + "missed": true + }, + { + "index": "511", + "missed": true + }, + { + "index": "512", + "missed": true + }, + { + "index": "513", + "missed": true + }, + { + "index": "514", + "missed": true + }, + { + "index": "515", + "missed": true + }, + { + "index": "516", + "missed": true + }, + { + "index": "517", + "missed": true + }, + { + "index": "518", + "missed": true + }, + { + "index": "519", + "missed": true + }, + { + "index": "520", + "missed": true + }, + { + "index": "521", + "missed": true + }, + { + "index": "522", + "missed": true + }, + { + "index": "523", + "missed": true + }, + { + "index": "524", + "missed": true + }, + { + "index": "525", + "missed": true + }, + { + "index": "526", + "missed": true + }, + { + "index": "527", + "missed": true + }, + { + "index": "528", + "missed": true + }, + { + "index": "529", + "missed": true + }, + { + "index": "530", + "missed": true + }, + { + "index": "531", + "missed": true + }, + { + "index": "532", + "missed": true + }, + { + "index": "533", + "missed": true + }, + { + "index": "534", + "missed": true + }, + { + "index": "535", + "missed": true + }, + { + "index": "536", + "missed": true + }, + { + "index": "537", + "missed": true + }, + { + "index": "538", + "missed": true + }, + { + "index": "539", + "missed": true + }, + { + "index": "540", + "missed": true + }, + { + "index": "541", + "missed": true + }, + { + "index": "542", + "missed": true + }, + { + "index": "543", + "missed": true + }, + { + "index": "544", + "missed": true + }, + { + "index": "545", + "missed": true + }, + { + "index": "546", + "missed": true + }, + { + "index": "547", + "missed": true + }, + { + "index": "548", + "missed": true + }, + { + "index": "549", + "missed": true + }, + { + "index": "550", + "missed": true + }, + { + "index": "551", + "missed": true + }, + { + "index": "552", + "missed": true + }, + { + "index": "553", + "missed": true + }, + { + "index": "554", + "missed": true + }, + { + "index": "555", + "missed": true + }, + { + "index": "556", + "missed": true + }, + { + "index": "557", + "missed": true + }, + { + "index": "558", + "missed": true + }, + { + "index": "559", + "missed": true + }, + { + "index": "560", + "missed": true + }, + { + "index": "561", + "missed": true + }, + { + "index": "562", + "missed": true + }, + { + "index": "563", + "missed": true + }, + { + "index": "564", + "missed": true + }, + { + "index": "565", + "missed": true + }, + { + "index": "566", + "missed": true + }, + { + "index": "567", + "missed": true + }, + { + "index": "568", + "missed": true + }, + { + "index": "569", + "missed": true + }, + { + "index": "570", + "missed": true + }, + { + "index": "571", + "missed": true + }, + { + "index": "572", + "missed": true + }, + { + "index": "573", + "missed": true + }, + { + "index": "574", + "missed": true + }, + { + "index": "575", + "missed": true + }, + { + "index": "576", + "missed": true + }, + { + "index": "577", + "missed": true + }, + { + "index": "578", + "missed": true + }, + { + "index": "579", + "missed": true + }, + { + "index": "580", + "missed": true + }, + { + "index": "581", + "missed": true + }, + { + "index": "582", + "missed": true + }, + { + "index": "583", + "missed": true + }, + { + "index": "584", + "missed": true + }, + { + "index": "585", + "missed": true + }, + { + "index": "586", + "missed": true + }, + { + "index": "587", + "missed": true + }, + { + "index": "588", + "missed": true + }, + { + "index": "589", + "missed": true + }, + { + "index": "590", + "missed": true + }, + { + "index": "591", + "missed": true + }, + { + "index": "592", + "missed": true + }, + { + "index": "593", + "missed": true + }, + { + "index": "594", + "missed": true + }, + { + "index": "595", + "missed": true + }, + { + "index": "596", + "missed": true + }, + { + "index": "597", + "missed": true + }, + { + "index": "598", + "missed": true + }, + { + "index": "599", + "missed": true + }, + { + "index": "600", + "missed": true + }, + { + "index": "601", + "missed": true + }, + { + "index": "602", + "missed": true + }, + { + "index": "603", + "missed": true + }, + { + "index": "604", + "missed": true + }, + { + "index": "605", + "missed": true + }, + { + "index": "606", + "missed": true + }, + { + "index": "607", + "missed": true + }, + { + "index": "608", + "missed": true + }, + { + "index": "609", + "missed": true + }, + { + "index": "610", + "missed": true + }, + { + "index": "611", + "missed": true + }, + { + "index": "612", + "missed": true + }, + { + "index": "613", + "missed": true + }, + { + "index": "614", + "missed": true + }, + { + "index": "615", + "missed": true + }, + { + "index": "616", + "missed": true + }, + { + "index": "617", + "missed": true + }, + { + "index": "618", + "missed": true + }, + { + "index": "619", + "missed": true + }, + { + "index": "620", + "missed": true + }, + { + "index": "621", + "missed": true + }, + { + "index": "622", + "missed": true + }, + { + "index": "623", + "missed": true + }, + { + "index": "624", + "missed": true + }, + { + "index": "625", + "missed": true + }, + { + "index": "626", + "missed": true + }, + { + "index": "627", + "missed": true + }, + { + "index": "628", + "missed": true + }, + { + "index": "629", + "missed": true + }, + { + "index": "630", + "missed": true + }, + { + "index": "631", + "missed": true + }, + { + "index": "632", + "missed": true + }, + { + "index": "633", + "missed": true + }, + { + "index": "634", + "missed": true + }, + { + "index": "635", + "missed": true + }, + { + "index": "636", + "missed": true + }, + { + "index": "637", + "missed": true + }, + { + "index": "638", + "missed": true + }, + { + "index": "639", + "missed": true + }, + { + "index": "640", + "missed": true + }, + { + "index": "641", + "missed": true + }, + { + "index": "642", + "missed": true + }, + { + "index": "643", + "missed": true + }, + { + "index": "644", + "missed": true + }, + { + "index": "645", + "missed": true + }, + { + "index": "646", + "missed": true + }, + { + "index": "647", + "missed": true + }, + { + "index": "648", + "missed": true + }, + { + "index": "649", + "missed": true + }, + { + "index": "650", + "missed": true + }, + { + "index": "651", + "missed": true + }, + { + "index": "652", + "missed": true + }, + { + "index": "653", + "missed": true + }, + { + "index": "654", + "missed": true + }, + { + "index": "655", + "missed": true + }, + { + "index": "656", + "missed": true + }, + { + "index": "657", + "missed": true + }, + { + "index": "658", + "missed": true + }, + { + "index": "659", + "missed": true + }, + { + "index": "660", + "missed": true + }, + { + "index": "661", + "missed": true + }, + { + "index": "662", + "missed": true + }, + { + "index": "663", + "missed": true + }, + { + "index": "664", + "missed": true + }, + { + "index": "665", + "missed": true + }, + { + "index": "666", + "missed": true + }, + { + "index": "667", + "missed": true + }, + { + "index": "668", + "missed": true + }, + { + "index": "669", + "missed": true + }, + { + "index": "670", + "missed": true + }, + { + "index": "671", + "missed": true + }, + { + "index": "672", + "missed": true + }, + { + "index": "673", + "missed": true + }, + { + "index": "674", + "missed": true + }, + { + "index": "675", + "missed": true + }, + { + "index": "676", + "missed": true + }, + { + "index": "677", + "missed": true + }, + { + "index": "678", + "missed": true + }, + { + "index": "679", + "missed": true + }, + { + "index": "680", + "missed": true + }, + { + "index": "681", + "missed": true + }, + { + "index": "682", + "missed": true + }, + { + "index": "683", + "missed": true + }, + { + "index": "684", + "missed": true + }, + { + "index": "685", + "missed": true + }, + { + "index": "686", + "missed": true + }, + { + "index": "687", + "missed": true + }, + { + "index": "688", + "missed": true + }, + { + "index": "689", + "missed": true + }, + { + "index": "690", + "missed": true + }, + { + "index": "691", + "missed": true + }, + { + "index": "692", + "missed": true + }, + { + "index": "693", + "missed": true + }, + { + "index": "694", + "missed": true + }, + { + "index": "695", + "missed": true + }, + { + "index": "696", + "missed": true + }, + { + "index": "697", + "missed": true + }, + { + "index": "698", + "missed": true + }, + { + "index": "699", + "missed": true + }, + { + "index": "700", + "missed": true + }, + { + "index": "701", + "missed": true + }, + { + "index": "702", + "missed": true + }, + { + "index": "703", + "missed": true + }, + { + "index": "704", + "missed": true + }, + { + "index": "705", + "missed": true + }, + { + "index": "706", + "missed": true + }, + { + "index": "707", + "missed": true + }, + { + "index": "708", + "missed": true + }, + { + "index": "709", + "missed": true + }, + { + "index": "710", + "missed": true + }, + { + "index": "711", + "missed": true + }, + { + "index": "712", + "missed": true + }, + { + "index": "713", + "missed": true + }, + { + "index": "714", + "missed": true + }, + { + "index": "715", + "missed": true + }, + { + "index": "716", + "missed": true + }, + { + "index": "717", + "missed": true + }, + { + "index": "718", + "missed": true + }, + { + "index": "719", + "missed": true + } + ], + "desmosvalcons1lkhc49g3zv40lcunmvtgwp3ph020rxlawpn78f": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + } + ], + "desmosvalcons1mxrd5cyjgpx5vfgltrdufq9wq4ynwc799ndrg8": [ + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + } + ], + "desmosvalcons1myshyf8wspceyfevtehjlrnwt56ke9hzhfrw94": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1n6x4y8srfml6f4xsynyn9y0dtjrfwfhyjpapkf": [ + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + } + ], + "desmosvalcons1njm7nf3604rl2n4tkdquz0yuryyfx8zgx2guar": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1pjxldh4ye8j2uyrxxe3yj3g47jy4d9zmak29ps": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1q43yf4u7xdyuezv63t32575p0pw3yyw2ge33zj": [ + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + } + ], + "desmosvalcons1q4y7zlwvu24yh2cxgrrs56fr38lqsy63ta2wrh": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1qxjse4ldv8es4ht75v67mvdmnp5hlp3nsc2msw": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1r42xg72zv6vtawmkw6xx0hquw3ttnf2pry4ege": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1s8h4nset89q7s7qjn59t4r4zlkh0a0efp4gjda": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1shagz97e6e48au7u58an6xf2h34qm2uvczndv9": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1sqfd9fxngk7frlg8jhxhv49jvacr8nlra3l7ha": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1t4e6htkm78cy0vlp97xqes97vfkzmc387vmle4": [ + { + "index": "391", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + } + ], + "desmosvalcons1t5vgxhmyg97lfhq4747k75kyvsk4n9p5pu4sd8": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1udw92ulxq2wq05swpuhnns4a6y42xlhwz6q97g": [], + "desmosvalcons1uga4khralc934va2e862wgvrzhswuzqsefw0s8": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "715", + "missed": false + } + ], + "desmosvalcons1v5ejtt5dff85c5zfy8gxea25d92yzrw0lewxyw": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + } + ], + "desmosvalcons1vs6mfhuvyrgjd9uwqv8fgcykqehdgczs0hngzc": [ + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + } + ], + "desmosvalcons1wdjkpvmkymxrq5ye9m7afecf3nzhyfccep8ajh": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1why72hjk945yhckcy5hzk2z2w9d5h65t9am0kd": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1wuf54kv2w6fa758t87gjlzkx97ek2dptjsc52w": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1x4dc8v28lnvwspa0hxr70za5ypp6jnqmdh8z6t": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1xd7zavv738jxf2th343ka7ytfvhea55908r9nl": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1xe4rdry0kunfvcn3a3wf3ay7zpv0rr3az4d8uf": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1xmjasmeljjp5xlzqqz6j8zr9czd3c78cduy4hr": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + } + ], + "desmosvalcons1xvasspfy8g95hv3ylr9esq7mrexzqsf5533wmk": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1y55lyzklnxn4s9qw5s9pzu8gj0uv8pp3n3xyhy": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1zjkm5nkfjxnqmlp67drw93cqsmacecsuunclde": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1zsyjznzjjesafmjuccrwtrakp7ess7vfvytyxg": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": true + }, + { + "index": "400", + "missed": true + }, + { + "index": "401", + "missed": true + }, + { + "index": "402", + "missed": true + }, + { + "index": "403", + "missed": true + }, + { + "index": "404", + "missed": true + }, + { + "index": "405", + "missed": true + }, + { + "index": "406", + "missed": true + }, + { + "index": "407", + "missed": true + }, + { + "index": "408", + "missed": true + }, + { + "index": "409", + "missed": true + }, + { + "index": "410", + "missed": true + }, + { + "index": "411", + "missed": true + }, + { + "index": "412", + "missed": true + }, + { + "index": "413", + "missed": true + }, + { + "index": "414", + "missed": true + }, + { + "index": "415", + "missed": true + }, + { + "index": "416", + "missed": true + }, + { + "index": "417", + "missed": true + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ] + }, + "params": { + "downtime_jail_duration": "600000000000", + "min_signed_per_window": "0.050000000000000000", + "signed_blocks_window": "720", + "slash_fraction_double_sign": "0.050000000000000000", + "slash_fraction_downtime": "0.010000000000000000" + }, + "signing_infos": { + "desmosvalcons13tssslsz0wn0jw2whypvyy57pyxt7aksul4edu": { + "address": "desmosvalcons13tssslsz0wn0jw2whypvyy57pyxt7aksul4edu", + "index_offset": "2", + "jailed_until": "2020-01-25T06:20:17.131718997Z", + "missed_blocks_counter": "2", + "start_height": "123024", + "tombstoned": false + }, + "desmosvalcons15kc3sr8re2xl5mj5df5dq543hz28mjkg8h5qgj": { + "address": "desmosvalcons15kc3sr8re2xl5mj5df5dq543hz28mjkg8h5qgj", + "index_offset": "1358863", + "jailed_until": "2020-02-08T22:31:13.584250919Z", + "missed_blocks_counter": "0", + "start_height": "390687", + "tombstoned": false + }, + "desmosvalcons16e82c0qtlg8fsazgrmkncvfphmglpejg6gatz5": { + "address": "desmosvalcons16e82c0qtlg8fsazgrmkncvfphmglpejg6gatz5", + "index_offset": "589394", + "jailed_until": "2020-03-24T18:21:42.594117002Z", + "missed_blocks_counter": "0", + "start_height": "233618", + "tombstoned": false + }, + "desmosvalcons16fww3gd0p2sgunwexympn5x8cxjartt456a4mx": { + "address": "desmosvalcons16fww3gd0p2sgunwexympn5x8cxjartt456a4mx", + "index_offset": "2", + "jailed_until": "2020-05-02T14:40:13.52432244Z", + "missed_blocks_counter": "2", + "start_height": "107642", + "tombstoned": false + }, + "desmosvalcons1785njjxnay4pwd8w592xdx4rqptdy5h3cvr0a2": { + "address": "desmosvalcons1785njjxnay4pwd8w592xdx4rqptdy5h3cvr0a2", + "index_offset": "2242766", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "0", + "tombstoned": false + }, + "desmosvalcons17txgcuy9g4jy59en599anqy086h3h22l2gmt27": { + "address": "desmosvalcons17txgcuy9g4jy59en599anqy086h3h22l2gmt27", + "index_offset": "2", + "jailed_until": "2020-03-17T02:13:07.858492071Z", + "missed_blocks_counter": "2", + "start_height": "243925", + "tombstoned": false + }, + "desmosvalcons17uwyf238ykjg2at63uc5nm2k7xqxyxk37f8zkd": { + "address": "desmosvalcons17uwyf238ykjg2at63uc5nm2k7xqxyxk37f8zkd", + "index_offset": "2", + "jailed_until": "2020-02-17T07:07:24.021167357Z", + "missed_blocks_counter": "2", + "start_height": "258953", + "tombstoned": false + }, + "desmosvalcons19pc8sk3kqsqc83f57m65xwjvraq8l26ftfe0xr": { + "address": "desmosvalcons19pc8sk3kqsqc83f57m65xwjvraq8l26ftfe0xr", + "index_offset": "2", + "jailed_until": "2020-01-20T21:58:26.16886711Z", + "missed_blocks_counter": "2", + "start_height": "99765", + "tombstoned": false + }, + "desmosvalcons1a48zyjsq5n07e0jqvxjup4vge4pvxdt9unkce0": { + "address": "desmosvalcons1a48zyjsq5n07e0jqvxjup4vge4pvxdt9unkce0", + "index_offset": "2", + "jailed_until": "2020-04-30T10:11:13.745587335Z", + "missed_blocks_counter": "2", + "start_height": "73888", + "tombstoned": false + }, + "desmosvalcons1aak9vdqqn35wc655zwl29wtfnsp8cw9gu2awvt": { + "address": "desmosvalcons1aak9vdqqn35wc655zwl29wtfnsp8cw9gu2awvt", + "index_offset": "7462", + "jailed_until": "2020-05-06T04:13:56.258314599Z", + "missed_blocks_counter": "0", + "start_height": "79411", + "tombstoned": false + }, + "desmosvalcons1adduk8rnjd642axkhavlnan2huxfhlmdyar0ly": { + "address": "desmosvalcons1adduk8rnjd642axkhavlnan2huxfhlmdyar0ly", + "index_offset": "822325", + "jailed_until": "2020-03-15T08:38:02.152450862Z", + "missed_blocks_counter": "0", + "start_height": "85420", + "tombstoned": false + }, + "desmosvalcons1arakyvwlhac9flyves3c07634cxsulrdjzcwne": { + "address": "desmosvalcons1arakyvwlhac9flyves3c07634cxsulrdjzcwne", + "index_offset": "2", + "jailed_until": "2020-04-30T10:08:20.662124989Z", + "missed_blocks_counter": "2", + "start_height": "73857", + "tombstoned": false + }, + "desmosvalcons1c29eyczh5lw4npe0a9n40nm5g299fq8nt5lerw": { + "address": "desmosvalcons1c29eyczh5lw4npe0a9n40nm5g299fq8nt5lerw", + "index_offset": "1495886", + "jailed_until": "2020-01-30T22:38:17.754789733Z", + "missed_blocks_counter": "0", + "start_height": "253433", + "tombstoned": false + }, + "desmosvalcons1crr2fr40gj3hqqq7kcn84ec84r7ykwm7mc7d7x": { + "address": "desmosvalcons1crr2fr40gj3hqqq7kcn84ec84r7ykwm7mc7d7x", + "index_offset": "2", + "jailed_until": "2020-02-17T07:07:58.089117455Z", + "missed_blocks_counter": "2", + "start_height": "251254", + "tombstoned": false + }, + "desmosvalcons1d8pcgv38fkczqk8ka543eyc5tx6emwsjslmde0": { + "address": "desmosvalcons1d8pcgv38fkczqk8ka543eyc5tx6emwsjslmde0", + "index_offset": "2", + "jailed_until": "2020-02-26T08:38:24.009429044Z", + "missed_blocks_counter": "2", + "start_height": "657370", + "tombstoned": false + }, + "desmosvalcons1fxl3av27g93nw8jqjnm2344jffs7cmgu43676a": { + "address": "desmosvalcons1fxl3av27g93nw8jqjnm2344jffs7cmgu43676a", + "index_offset": "1305738", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "451101", + "tombstoned": false + }, + "desmosvalcons1g5895s4my026q6xmjcullh2smw4tf8w93fztsn": { + "address": "desmosvalcons1g5895s4my026q6xmjcullh2smw4tf8w93fztsn", + "index_offset": "2", + "jailed_until": "2020-04-15T14:41:54.828530968Z", + "missed_blocks_counter": "2", + "start_height": "37687", + "tombstoned": false + }, + "desmosvalcons1hkvz89vzj3y44d9fz0k4yqw5lv4ah84vznqgsp": { + "address": "desmosvalcons1hkvz89vzj3y44d9fz0k4yqw5lv4ah84vznqgsp", + "index_offset": "1068358", + "jailed_until": "2020-02-22T09:09:37.003963438Z", + "missed_blocks_counter": "0", + "start_height": "398490", + "tombstoned": false + }, + "desmosvalcons1jk4x2969x7wd680zw6alyke8cftlxngvlww57t": { + "address": "desmosvalcons1jk4x2969x7wd680zw6alyke8cftlxngvlww57t", + "index_offset": "2", + "jailed_until": "2020-04-27T21:49:29.542178808Z", + "missed_blocks_counter": "2", + "start_height": "35069", + "tombstoned": false + }, + "desmosvalcons1jk63tv9pplzs8l7gqk308mchh7p70eptjpzx96": { + "address": "desmosvalcons1jk63tv9pplzs8l7gqk308mchh7p70eptjpzx96", + "index_offset": "40936", + "jailed_until": "2020-04-28T23:42:58.643380037Z", + "missed_blocks_counter": "0", + "start_height": "31344", + "tombstoned": false + }, + "desmosvalcons1jmp6rwg46c6x2nl3nrnczudzg9zdlf39d34ttl": { + "address": "desmosvalcons1jmp6rwg46c6x2nl3nrnczudzg9zdlf39d34ttl", + "index_offset": "169", + "jailed_until": "2020-01-16T10:42:46.911403437Z", + "missed_blocks_counter": "0", + "start_height": "31171", + "tombstoned": false + }, + "desmosvalcons1k0nxu0r7rssxf86wyemn369yazzjry7dsfmcs0": { + "address": "desmosvalcons1k0nxu0r7rssxf86wyemn369yazzjry7dsfmcs0", + "index_offset": "547099", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "496198", + "tombstoned": false + }, + "desmosvalcons1k6wks6q2gr467n8te3v76k4paf9xylhrq3rgzm": { + "address": "desmosvalcons1k6wks6q2gr467n8te3v76k4paf9xylhrq3rgzm", + "index_offset": "2242766", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "0", + "tombstoned": false + }, + "desmosvalcons1ktp5mu8h28mxhrkygw7mys8tl5f67yv46tdzvy": { + "address": "desmosvalcons1ktp5mu8h28mxhrkygw7mys8tl5f67yv46tdzvy", + "index_offset": "396713", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "720", + "start_height": "646584", + "tombstoned": false + }, + "desmosvalcons1lkhc49g3zv40lcunmvtgwp3ph020rxlawpn78f": { + "address": "desmosvalcons1lkhc49g3zv40lcunmvtgwp3ph020rxlawpn78f", + "index_offset": "145244", + "jailed_until": "2020-04-28T13:12:08.234615785Z", + "missed_blocks_counter": "0", + "start_height": "44950", + "tombstoned": false + }, + "desmosvalcons1mxrd5cyjgpx5vfgltrdufq9wq4ynwc799ndrg8": { + "address": "desmosvalcons1mxrd5cyjgpx5vfgltrdufq9wq4ynwc799ndrg8", + "index_offset": "2242766", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "0", + "tombstoned": false + }, + "desmosvalcons1myshyf8wspceyfevtehjlrnwt56ke9hzhfrw94": { + "address": "desmosvalcons1myshyf8wspceyfevtehjlrnwt56ke9hzhfrw94", + "index_offset": "1638954", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "117885", + "tombstoned": false + }, + "desmosvalcons1n6x4y8srfml6f4xsynyn9y0dtjrfwfhyjpapkf": { + "address": "desmosvalcons1n6x4y8srfml6f4xsynyn9y0dtjrfwfhyjpapkf", + "index_offset": "139713", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "57985", + "tombstoned": false + }, + "desmosvalcons1njm7nf3604rl2n4tkdquz0yuryyfx8zgx2guar": { + "address": "desmosvalcons1njm7nf3604rl2n4tkdquz0yuryyfx8zgx2guar", + "index_offset": "1687197", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "69642", + "tombstoned": false + }, + "desmosvalcons1pjxldh4ye8j2uyrxxe3yj3g47jy4d9zmak29ps": { + "address": "desmosvalcons1pjxldh4ye8j2uyrxxe3yj3g47jy4d9zmak29ps", + "index_offset": "2", + "jailed_until": "2020-01-26T09:49:03.452350932Z", + "missed_blocks_counter": "2", + "start_height": "183951", + "tombstoned": false + }, + "desmosvalcons1q43yf4u7xdyuezv63t32575p0pw3yyw2ge33zj": { + "address": "desmosvalcons1q43yf4u7xdyuezv63t32575p0pw3yyw2ge33zj", + "index_offset": "130042", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "67656", + "tombstoned": false + }, + "desmosvalcons1q4y7zlwvu24yh2cxgrrs56fr38lqsy63ta2wrh": { + "address": "desmosvalcons1q4y7zlwvu24yh2cxgrrs56fr38lqsy63ta2wrh", + "index_offset": "1698189", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "58650", + "tombstoned": false + }, + "desmosvalcons1qxjse4ldv8es4ht75v67mvdmnp5hlp3nsc2msw": { + "address": "desmosvalcons1qxjse4ldv8es4ht75v67mvdmnp5hlp3nsc2msw", + "index_offset": "2", + "jailed_until": "2020-03-04T06:17:38.437320288Z", + "missed_blocks_counter": "2", + "start_height": "47232", + "tombstoned": false + }, + "desmosvalcons1r42xg72zv6vtawmkw6xx0hquw3ttnf2pry4ege": { + "address": "desmosvalcons1r42xg72zv6vtawmkw6xx0hquw3ttnf2pry4ege", + "index_offset": "2", + "jailed_until": "2020-03-09T02:20:48.068423596Z", + "missed_blocks_counter": "2", + "start_height": "121299", + "tombstoned": false + }, + "desmosvalcons1s8h4nset89q7s7qjn59t4r4zlkh0a0efp4gjda": { + "address": "desmosvalcons1s8h4nset89q7s7qjn59t4r4zlkh0a0efp4gjda", + "index_offset": "331698", + "jailed_until": "2020-04-15T07:30:11.983156313Z", + "missed_blocks_counter": "0", + "start_height": "46213", + "tombstoned": false + }, + "desmosvalcons1shagz97e6e48au7u58an6xf2h34qm2uvczndv9": { + "address": "desmosvalcons1shagz97e6e48au7u58an6xf2h34qm2uvczndv9", + "index_offset": "2", + "jailed_until": "2020-04-04T17:38:49.385099828Z", + "missed_blocks_counter": "2", + "start_height": "247523", + "tombstoned": false + }, + "desmosvalcons1sqfd9fxngk7frlg8jhxhv49jvacr8nlra3l7ha": { + "address": "desmosvalcons1sqfd9fxngk7frlg8jhxhv49jvacr8nlra3l7ha", + "index_offset": "1614254", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "142585", + "tombstoned": false + }, + "desmosvalcons1t4e6htkm78cy0vlp97xqes97vfkzmc387vmle4": { + "address": "desmosvalcons1t4e6htkm78cy0vlp97xqes97vfkzmc387vmle4", + "index_offset": "116426", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "81272", + "tombstoned": false + }, + "desmosvalcons1t5vgxhmyg97lfhq4747k75kyvsk4n9p5pu4sd8": { + "address": "desmosvalcons1t5vgxhmyg97lfhq4747k75kyvsk4n9p5pu4sd8", + "index_offset": "2", + "jailed_until": "2020-04-18T22:09:30.337984036Z", + "missed_blocks_counter": "2", + "start_height": "582067", + "tombstoned": false + }, + "desmosvalcons1udw92ulxq2wq05swpuhnns4a6y42xlhwz6q97g": { + "address": "desmosvalcons1udw92ulxq2wq05swpuhnns4a6y42xlhwz6q97g", + "index_offset": "2", + "jailed_until": "2020-02-06T04:27:31.228155207Z", + "missed_blocks_counter": "0", + "start_height": "159580", + "tombstoned": false + }, + "desmosvalcons1uga4khralc934va2e862wgvrzhswuzqsefw0s8": { + "address": "desmosvalcons1uga4khralc934va2e862wgvrzhswuzqsefw0s8", + "index_offset": "9216", + "jailed_until": "2020-05-07T01:26:15.55311133Z", + "missed_blocks_counter": "0", + "start_height": "68079", + "tombstoned": false + }, + "desmosvalcons1v5ejtt5dff85c5zfy8gxea25d92yzrw0lewxyw": { + "address": "desmosvalcons1v5ejtt5dff85c5zfy8gxea25d92yzrw0lewxyw", + "index_offset": "167800", + "jailed_until": "2020-03-30T09:49:35.175761967Z", + "missed_blocks_counter": "0", + "start_height": "19678", + "tombstoned": false + }, + "desmosvalcons1vs6mfhuvyrgjd9uwqv8fgcykqehdgczs0hngzc": { + "address": "desmosvalcons1vs6mfhuvyrgjd9uwqv8fgcykqehdgczs0hngzc", + "index_offset": "2242766", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "0", + "tombstoned": false + }, + "desmosvalcons1wdjkpvmkymxrq5ye9m7afecf3nzhyfccep8ajh": { + "address": "desmosvalcons1wdjkpvmkymxrq5ye9m7afecf3nzhyfccep8ajh", + "index_offset": "2", + "jailed_until": "2020-04-27T15:02:42.768653105Z", + "missed_blocks_counter": "2", + "start_height": "30716", + "tombstoned": false + }, + "desmosvalcons1why72hjk945yhckcy5hzk2z2w9d5h65t9am0kd": { + "address": "desmosvalcons1why72hjk945yhckcy5hzk2z2w9d5h65t9am0kd", + "index_offset": "1082674", + "jailed_until": "2020-02-26T15:01:17.140767682Z", + "missed_blocks_counter": "0", + "start_height": "444424", + "tombstoned": false + }, + "desmosvalcons1wuf54kv2w6fa758t87gjlzkx97ek2dptjsc52w": { + "address": "desmosvalcons1wuf54kv2w6fa758t87gjlzkx97ek2dptjsc52w", + "index_offset": "1676335", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "80504", + "tombstoned": false + }, + "desmosvalcons1x4dc8v28lnvwspa0hxr70za5ypp6jnqmdh8z6t": { + "address": "desmosvalcons1x4dc8v28lnvwspa0hxr70za5ypp6jnqmdh8z6t", + "index_offset": "2", + "jailed_until": "2020-01-18T22:08:03.841911663Z", + "missed_blocks_counter": "2", + "start_height": "69191", + "tombstoned": false + }, + "desmosvalcons1xd7zavv738jxf2th343ka7ytfvhea55908r9nl": { + "address": "desmosvalcons1xd7zavv738jxf2th343ka7ytfvhea55908r9nl", + "index_offset": "1096037", + "jailed_until": "2020-02-26T06:31:42.069077155Z", + "missed_blocks_counter": "0", + "start_height": "34471", + "tombstoned": false + }, + "desmosvalcons1xe4rdry0kunfvcn3a3wf3ay7zpv0rr3az4d8uf": { + "address": "desmosvalcons1xe4rdry0kunfvcn3a3wf3ay7zpv0rr3az4d8uf", + "index_offset": "495643", + "jailed_until": "2020-04-05T07:17:01.205408276Z", + "missed_blocks_counter": "0", + "start_height": "237627", + "tombstoned": false + }, + "desmosvalcons1xmjasmeljjp5xlzqqz6j8zr9czd3c78cduy4hr": { + "address": "desmosvalcons1xmjasmeljjp5xlzqqz6j8zr9czd3c78cduy4hr", + "index_offset": "147119", + "jailed_until": "2020-04-08T13:23:34.07706811Z", + "missed_blocks_counter": "0", + "start_height": "551292", + "tombstoned": false + }, + "desmosvalcons1xvasspfy8g95hv3ylr9esq7mrexzqsf5533wmk": { + "address": "desmosvalcons1xvasspfy8g95hv3ylr9esq7mrexzqsf5533wmk", + "index_offset": "2", + "jailed_until": "2020-02-21T05:15:54.182086578Z", + "missed_blocks_counter": "2", + "start_height": "566370", + "tombstoned": false + }, + "desmosvalcons1y55lyzklnxn4s9qw5s9pzu8gj0uv8pp3n3xyhy": { + "address": "desmosvalcons1y55lyzklnxn4s9qw5s9pzu8gj0uv8pp3n3xyhy", + "index_offset": "225261", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "818036", + "tombstoned": false + }, + "desmosvalcons1zjkm5nkfjxnqmlp67drw93cqsmacecsuunclde": { + "address": "desmosvalcons1zjkm5nkfjxnqmlp67drw93cqsmacecsuunclde", + "index_offset": "2", + "jailed_until": "2020-01-30T03:48:43.182091804Z", + "missed_blocks_counter": "2", + "start_height": "241416", + "tombstoned": false + }, + "desmosvalcons1zsyjznzjjesafmjuccrwtrakp7ess7vfvytyxg": { + "address": "desmosvalcons1zsyjznzjjesafmjuccrwtrakp7ess7vfvytyxg", + "index_offset": "166856", + "jailed_until": "2020-04-10T13:26:35.373245772Z", + "missed_blocks_counter": "19", + "start_height": "247294", + "tombstoned": false + } + } + }, + "staking": { + "delegations": [ + { + "delegator_address": "desmos1qrnfe2emyc5p8dvg3luaeta973lvdklk5auhk6", + "shares": "10000000000.000000000000000000", + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "delegator_address": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "shares": "10000000.000000000000000000", + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "delegator_address": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "shares": "30574840.699788811038292150", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "delegator_address": "desmos1z3sr49arwjltxuq9r5t4ykezphmjks3dnzucmf", + "shares": "9496085.000000000000000000", + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "delegator_address": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "shares": "17500000.000000000000000000", + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "delegator_address": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "shares": "6000000.000000000000000000", + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "delegator_address": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "shares": "2010101.010101010101010101", + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "delegator_address": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "shares": "49997040.000000000000000000", + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "delegator_address": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "shares": "3140921.409214092140921407", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "delegator_address": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "delegator_address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "shares": "11101010.101010101010101010", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "delegator_address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "shares": "20000000.000000000000000000", + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "delegator_address": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "shares": "9500000.000000000000000000", + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "delegator_address": "desmos1fs39fdhkus69jskyv5s6xsk5wzrtyutpv67ma6", + "shares": "2100000.000000000000000000", + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "delegator_address": "desmos1fjjvue580y7ux29hv8qg5kfkf5w26jzsh0gm2g", + "shares": "19292929.292929292929292918", + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "delegator_address": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "shares": "40391114.141414141414141412", + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "delegator_address": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "shares": "2000010.000000000000000000", + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "delegator_address": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "shares": "10000000.000000000000000000", + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "delegator_address": "desmos1t74p8wd0thcq6hcnczp9eezaudvrec60y8l4hm", + "shares": "100000.000000000000000000", + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "delegator_address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "shares": "909090.909090909090909091", + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "delegator_address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "shares": "24000000.000000000000000000", + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "delegator_address": "desmos105rr8u0mjqs9wntlmdgx4kskxqa9lv5k5wuaaz", + "shares": "10000000000.000000000000000000", + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "delegator_address": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "shares": "7777777.000000000000000000", + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "delegator_address": "desmos1svjxha4pnx5grsqc4cfy7ycv54y4fle3vmxxwh", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "delegator_address": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "shares": "20101018.181818181818181818", + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "delegator_address": "desmos1snmetx9sfrmznr4z6d3lnwlyvwu36sgcpzzhlr", + "shares": "10000000000.000000000000000000", + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "delegator_address": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "shares": "9000000.000000000000000000", + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "delegator_address": "desmos1397mvzsugyk8jakl2wehwysg96rfa6gv3chwuc", + "shares": "14000000.000000000000000000", + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "delegator_address": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "shares": "9000000.000000000000000000", + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "delegator_address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "delegator_address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "shares": "102.849402335263517782", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "delegator_address": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "shares": "20300768.629051457334285616", + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "delegator_address": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "delegator_address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "shares": "18000000.000000000000000000", + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "delegator_address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "shares": "11000000.000000000000000000", + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "delegator_address": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "shares": "50404040.404040404040404038", + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "delegator_address": "desmos15ux5mc98jlhsg30dzwwv06ftjs82uy4g3t99ru", + "shares": "6000000.000000000000000000", + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "delegator_address": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "shares": "82100652.050456825968561594", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "delegator_address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "shares": "6050505.050505050505050505", + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "delegator_address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "shares": "3000000.000000000000000000", + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "delegator_address": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "delegator_address": "desmos14wtz9tuxu2ue7lmj3r8dvjajsvaryzttxr7dch", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "delegator_address": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "delegator_address": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "delegator_address": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "shares": "10000000.000000000000000000", + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "delegator_address": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "shares": "4030303.030303030303030303", + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "delegator_address": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "shares": "9078304.040404040404040404", + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "delegator_address": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "shares": "19997563.000000000000000000", + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "delegator_address": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "shares": "117135184.319631620402828548", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "delegator_address": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "shares": "10100000.000000000000000000", + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "delegator_address": "desmos168yfpd2t8lvfxwu8lcu0ppuh3kl598g53xq7hk", + "shares": "15000000.000000000000000000", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "delegator_address": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "delegator_address": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "shares": "29997035.000000000000000000", + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "delegator_address": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "shares": "9000000.000000000000000000", + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "delegator_address": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "shares": "29997010.000000000000000000", + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "delegator_address": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "shares": "10.000000000000000000", + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "delegator_address": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "shares": "29996071.000000000000000000", + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "delegator_address": "desmos1uj9c9929scde78wu3u5r99wcavf2fzl7rdesmh", + "shares": "10000000000.000000000000000000", + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "delegator_address": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "shares": "6000000.000000000000000000", + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "delegator_address": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "shares": "9500000.000000000000000000", + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "delegator_address": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "shares": "9000000.000000000000000000", + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "delegator_address": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "exported": true, + "last_total_power": "40627", + "last_validator_powers": [ + { + "Address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug", + "Power": "10000" + }, + { + "Address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "Power": "28" + }, + { + "Address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m", + "Power": "9" + }, + { + "Address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6", + "Power": "17" + }, + { + "Address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp", + "Power": "1" + }, + { + "Address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf", + "Power": "49" + }, + { + "Address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "Power": "2" + }, + { + "Address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps", + "Power": "1" + }, + { + "Address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u", + "Power": "9" + }, + { + "Address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2", + "Power": "39" + }, + { + "Address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz", + "Power": "10" + }, + { + "Address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs", + "Power": "10000" + }, + { + "Address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad", + "Power": "7" + }, + { + "Address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "Power": "19" + }, + { + "Address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43", + "Power": "10000" + }, + { + "Address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay", + "Power": "9" + }, + { + "Address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2", + "Power": "37" + }, + { + "Address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc", + "Power": "49" + }, + { + "Address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "Power": "77" + }, + { + "Address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p", + "Power": "1" + }, + { + "Address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3", + "Power": "10" + }, + { + "Address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt", + "Power": "3" + }, + { + "Address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0", + "Power": "8" + }, + { + "Address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh", + "Power": "19" + }, + { + "Address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "Power": "108" + }, + { + "Address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "Power": "14" + }, + { + "Address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0", + "Power": "29" + }, + { + "Address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl", + "Power": "29" + }, + { + "Address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6", + "Power": "29" + }, + { + "Address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39", + "Power": "10000" + }, + { + "Address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg", + "Power": "5" + }, + { + "Address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz", + "Power": "9" + } + ], + "params": { + "bond_denom": "udaric", + "historical_entries": 0, + "max_entries": 7, + "max_validators": 100, + "unbonding_time": "1814400000000000" + }, + "redelegations": null, + "unbonding_delegations": null, + "validators": [ + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2019-12-11T04:42:14.03384Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqeruwwwrd43f6hl2x9e2kmtam4e29jw0rxs3lugczvcr280yt8qqqaelkcj", + "delegator_shares": "10000000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Athena", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug", + "status": 2, + "tokens": "10000000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-19T05:06:15.576937919Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqtrzzfvsl7jjg9dys0m25wnjkrvsnz2gkjdxtfjrytcmguh6xn3zstc5dj6", + "delegator_shares": "10000000.000000000000000000", + "description": { + "details": "Nodeasy.com, 助你进入Staking时代!", + "identity": "AB006A79DBD8FC57", + "moniker": "Nodeasy.com", + "security_contact": "", + "website": "https://www.nodeasy.com/" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq", + "status": 1, + "tokens": "9900000", + "unbonding_height": "74578", + "unbonding_time": "2020-05-21T09:58:20.662124989Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-18T20:04:15.645638609Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqet6qkh09mcf88zqvamx9ts4q4gjepn8q9dtcj426w22wmzcsamhs30t99g", + "delegator_shares": "30574840.699788811038292150", + "description": { + "details": "", + "identity": "", + "moniker": "AndreyVelde", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "status": 2, + "tokens": "28280000", + "unbonding_height": "177109", + "unbonding_time": "2020-05-28T01:16:15.55311133Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-12T07:23:09.59623802Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqurcd3mehzx9z0ps8c76wyxj2tawfep3fca5dsdqzrdmjc9mm8k3qrmuwcx", + "delegator_shares": "9496085.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "wukong", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m", + "status": 2, + "tokens": "9496085", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.050000000000000000", + "max_rate": "0.250000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-12T20:25:32.998149832Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7nue6rj264w94rj3vcfws274tf9jfhkcgm7zkzley2n8qh26ay5q4prehn", + "delegator_shares": "17500000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Mike Snowman Validator", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6", + "status": 2, + "tokens": "17500000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-16T09:40:38.657207117Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqnphmrlh03nkh3zdqw95dvtfmyzcpnw2yra8u8fnv83lclnymuqcqjghwpp", + "delegator_shares": "6000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "InchainWorks", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p", + "status": 1, + "tokens": "5890000", + "unbonding_height": "31437", + "unbonding_time": "2020-05-18T14:52:42.768653105Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "1.000000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-27T14:44:00.480604877Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqkmfczvn3ry7huluwtpv524hyptw3nvqm576a00s6fhq0fazeh8csvt6n2a", + "delegator_shares": "2010101.010101010101010101", + "description": { + "details": "GoZ Desmos Team!", + "identity": "EA61A46F31742B22", + "moniker": "DragonStake", + "security_contact": "", + "website": "https://dragonstake.io" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp", + "status": 2, + "tokens": "1990000", + "unbonding_height": "52427", + "unbonding_time": "2020-05-19T23:32:58.643380037Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.500000000000000000" + }, + "update_time": "2020-01-29T15:16:37.329009347Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqhlcula77wkgsc2lxw6l6jgua28ychvlhp89p3e46j88gn2mrathqvp533a", + "delegator_shares": "49997040.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Wanderer", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf", + "status": 2, + "tokens": "49507040", + "unbonding_height": "362290", + "unbonding_time": "2020-04-14T18:11:42.594117002Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T12:41:28.075489117Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqadk480emwx7kejhrv3jaa32zt2kgckzd6w5q2570qy8nnqtgl9cs6js6k5", + "delegator_shares": "3140921.409214092140921407", + "description": { + "details": "", + "identity": "", + "moniker": "CNazar", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "status": 2, + "tokens": "2810000", + "unbonding_height": "619604", + "unbonding_time": "2020-05-01T13:16:35.373245772Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-18T22:30:51.338553338Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqg0h9rl7xcz6zl29z4xqvqr6zte7wzd6hl7pzfc009n655e4rturssqakuf", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "8265DEAF50B61DF7", + "moniker": "UbikCapital", + "security_contact": "", + "website": "ubik.capital" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps", + "status": 2, + "tokens": "1000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-17T11:28:53.506179909Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqe5mylnrsv8c6g0g0w888j7cef5zyhew8ft9kdxvfwly4zacxy9pq74fsjf", + "delegator_shares": "11101010.101010101010101010", + "description": { + "details": "", + "identity": "", + "moniker": "Wayne Staking", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "status": 0, + "tokens": "10690000", + "unbonding_height": "47953", + "unbonding_time": "2020-03-25T06:07:38.437320288Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-30T20:23:03.912796673Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepquzkuydgufyej4m39ln99dzhac0stpqrftgak7wwpynqhf7yl3s4qhxrpx2", + "delegator_shares": "9500000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "desmosval", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u", + "status": 2, + "tokens": "9500000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-22T21:07:39.898484735Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqdl9fvmdyqfw3rw8nq8jkrhtrgrd2wk0hgyp59xqhrzm7lr4hr04smmp4nz", + "delegator_shares": "2100000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "adorid2", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg", + "status": 0, + "tokens": "2080000", + "unbonding_height": "349033", + "unbonding_time": "2020-02-27T04:17:31.228155207Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T22:18:47.920881373Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq4hpam02khlenma5qpdrwnhhtt4m4lqmffka94ates0mw8v20wfaqz9jac0", + "delegator_shares": "40391114.141414141414141412", + "description": { + "details": "...", + "identity": "B4AD06F0EB355573", + "moniker": "KalpaTech", + "security_contact": "", + "website": "https://kalpatech.co" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2", + "status": 2, + "tokens": "39987203", + "unbonding_height": "253534", + "unbonding_time": "2020-02-20T22:28:17.754789733Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-24T15:27:02.726013939Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq5rq0ex5chw00jp932570km36llx5cw843mhhh9rzwukuz3fjsacqnhgftg", + "delegator_shares": "2000010.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "defistaker", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783", + "status": 0, + "tokens": "1980010", + "unbonding_height": "184052", + "unbonding_time": "2020-02-16T09:39:03.452350932Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "0.100000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-22T02:01:06.648708018Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq4w5c0uuuup4rqpkry9nd0kc9n9v5xzmg6y8u9h9f6zjx8r2f9wjqv2f7dh", + "delegator_shares": "10000000.000000000000000000", + "description": { + "details": "Cosmostation", + "identity": "", + "moniker": "JayB", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz", + "status": 2, + "tokens": "10000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-25T07:58:38.660612475Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqr6hkr7ukqc0pfdlgz23vyqmz7raptazz6675qxv234snzf8nutcq2utuam", + "delegator_shares": "100000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "ilav", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf", + "status": 0, + "tokens": "100000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.399900000000000000", + "rate": "0.099900000000000000" + }, + "update_time": "2020-01-16T10:23:18.881881105Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqt5pylvv2szsxm5pnycey0pqx57p2tageyac8ks2ndpth5sm5kcaqrf6n82", + "delegator_shares": "909090.909090909090909091", + "description": { + "details": "", + "identity": "", + "moniker": "blockscape", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl", + "status": 0, + "tokens": "900000", + "unbonding_height": "32829", + "unbonding_time": "2020-02-06T12:58:41.09453021Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2019-12-11T04:42:14.03384Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqjn74wls583jk9qjaq77rzjjtdqr0nqkk5ruqptzc0jvklfuwdyxsz22aux", + "delegator_shares": "10000000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Hermes", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs", + "status": 2, + "tokens": "10000000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.500000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.117000000000000000" + }, + "update_time": "2020-04-02T11:59:40.968210478Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqd777g20edy75mna0qg5p63le6xtj9ydh7m6p3yl7t7epyjsft4ssdczeq4", + "delegator_shares": "7777777.000000000000000000", + "description": { + "details": "A self-employed developer who likes to hack around new technology. Prefer to be anonymous!", + "identity": "04727F438AC37C45", + "moniker": "Cookproman", + "security_contact": "", + "website": "https://cookproman.github.io" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad", + "status": 2, + "tokens": "7777777", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-08T02:29:04.431925489Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqvlsamd0n82uj6kyczhv36m2tx6tj38ajnyp2qnvgeh9kvd56mq0saxslej", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "KysenPool.io", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9", + "status": 1, + "tokens": "990000", + "unbonding_height": "747326", + "unbonding_time": "2020-05-09T21:59:30.337984036Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-17T07:55:03.22515349Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq5aqny0hy59s2e5fnz33hen70apvahqhl4upr0zycr2hygw8xf9hskgjz7x", + "delegator_shares": "20101018.181818181818181818", + "description": { + "details": "", + "identity": "DA9C5AD3E308E426", + "moniker": "WeStaking", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "status": 2, + "tokens": "19520008", + "unbonding_height": "45671", + "unbonding_time": "2020-05-19T13:02:08.234615785Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2019-12-11T04:42:14.03384Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqsar2anrjyl5dqxwrrwht8cnyqeg30mayeqk4vpwjs4xutvz8anpqw6m4wx", + "delegator_shares": "10000000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Apollo", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43", + "status": 2, + "tokens": "10000000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.200000000000000000" + }, + "update_time": "2020-01-23T16:41:23.215676935Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqrq4vzaq8maffhryxpv6p6p80dl8425rfzapj67fgdkn8uaqd4slq74sr5p", + "delegator_shares": "9000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "DESMOS-IW", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay", + "status": 2, + "tokens": "9000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.399900000000000000", + "rate": "0.099900000000000000" + }, + "update_time": "2020-01-16T15:32:35.347113511Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqge5gmwgau7ypvqatuv6gfgp3ezz86ylnn3a7f2n7tkewkewhqvrq4j6y4u", + "delegator_shares": "38000000.000000000000000000", + "description": { + "details": "", + "identity": "C46C8329BB5F48D8", + "moniker": "blockscape", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2", + "status": 2, + "tokens": "37620000", + "unbonding_height": "656127", + "unbonding_time": "2020-03-18T06:21:42.069077155Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T18:53:56.104133382Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7clk78zf6yz98c9tdhqzhfy377xewrl78ng856mjkm332c2pef9s27289t", + "delegator_shares": "27000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "GRom81", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u", + "status": 0, + "tokens": "26730000", + "unbonding_height": "518947", + "unbonding_time": "2020-03-09T06:57:58.089117455Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-03-19T02:23:48.670871878Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7skcwvv03kn8c0x6a0epf78sdkcdzpx8g2heq83dgdtywlzwv4pskt4ak7", + "delegator_shares": "20292929.292929292929292918", + "description": { + "details": "Cat Magician", + "identity": "", + "moniker": "Magic_Cat", + "security_contact": "", + "website": "https://desmos.network" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2", + "status": 0, + "tokens": "19890000", + "unbonding_height": "530346", + "unbonding_time": "2020-04-25T17:28:49.385099828Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.050000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-21T09:58:46.566771703Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqm0l99ya3n3mx7puhgg7qhjxnrjt3umxyy7k84csd32j2pu7mjtfsh86jz2", + "delegator_shares": "20300768.629051457334285616", + "description": { + "details": "Bi23 focuses on the Crypto-Assets, providing customers with Staking and DeFi services.", + "identity": "EB3470949B3E89E2", + "moniker": "Bi23 Labs", + "security_contact": "", + "website": "https://bi23.com" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983", + "status": 1, + "tokens": "19740000", + "unbonding_height": "108363", + "unbonding_time": "2020-05-23T14:30:13.52432244Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-19T05:09:10.185747106Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqhpcmnnfjjukdu3mmruvkgvm832vjz33yztsk65tex9zql3tkakfqeljl06", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "yun", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf", + "status": 1, + "tokens": "990000", + "unbonding_height": "74609", + "unbonding_time": "2020-05-21T10:01:13.745587335Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-31T06:57:31.819294648Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqdyz3vtnl0h3xy3a6dtmy8mdf89mvmxpmgdnaxud3ylcc4lwwge3s8zv0qh", + "delegator_shares": "11000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Alive29", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7", + "status": 0, + "tokens": "10890000", + "unbonding_height": "518941", + "unbonding_time": "2020-03-09T06:57:24.021167357Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-30T10:07:27.502991586Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq9923az5444srax742atav6pchyg6lk2qd0uklm0k5s6xf0hu2s7sawaaut", + "delegator_shares": "50404040.404040404040404038", + "description": { + "details": "Simply Staking runs highly reliable and secure infrastructure in our own datacentre in Malta, built with the aim of supporting the growth of the blockchain ecosystem.", + "identity": "F74595D6D5D568A2", + "moniker": "Simply Staking", + "security_contact": "", + "website": "https://simply-vc.com.mt/" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc", + "status": 2, + "tokens": "49900000", + "unbonding_height": "661534", + "unbonding_time": "2020-03-18T14:51:17.140767682Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-03-03T14:00:32.882045252Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqhfa20zfgex57v5kxrdmpyrxx7l7rfts74k42krwm0kh37ph48k8qmmpmlr", + "delegator_shares": "26000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Wayne Stake", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw", + "status": 0, + "tokens": "25740000", + "unbonding_height": "697119", + "unbonding_time": "2020-05-06T14:31:54.828530968Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-19T23:11:37.312654476Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqp30fv6f4adg339gxrds3xhhxlk2y6axf0mpdux9mzece3c76hqxqyd3ch6", + "delegator_shares": "82100652.050456825968561594", + "description": { + "details": "", + "identity": "", + "moniker": "Bambarello", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "status": 2, + "tokens": "77357050", + "unbonding_height": "218069", + "unbonding_time": "2020-04-05T08:28:02.152450862Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-22T10:03:59.333092758Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqxxxhuvhtx347zeusupvv6k0yt0njz54x377na89q78nzj4a2djys7t24xp", + "delegator_shares": "6050505.050505050505050505", + "description": { + "details": "", + "identity": "D708E3F284C9AD86", + "moniker": "v-inevitable", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr", + "status": 0, + "tokens": "5890000", + "unbonding_height": "166515", + "unbonding_time": "2020-02-15T06:10:17.131718997Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-23T13:33:14.753100008Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqx3pvcyvs97a9zaxmq7d3p93c5d77teecrt07kvl8vejsne3pt6fscg3j32", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "72FA05B22F47EB17", + "moniker": "Minutemen", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p", + "status": 2, + "tokens": "1000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-20T21:38:56.922002697Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqk2m3m0xwmuxrljpzmg90zf7jj58c2n5j8ap7n9spsa0hh58fus4q9rlzzp", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "adorid", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9", + "status": 0, + "tokens": "990000", + "unbonding_height": "99866", + "unbonding_time": "2020-02-10T21:48:26.16886711Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-26T08:18:48.537383085Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqrgls8jwc37mrzu24clk6yy78hrcldyct6utnkns2lzfpdhpcrl9qwflj86", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "dilav", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e", + "status": 0, + "tokens": "990000", + "unbonding_height": "657471", + "unbonding_time": "2020-03-18T08:28:24.009429044Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-18T21:48:34.872470093Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7wg0xx06t82qwv9vazehcnle5vstff6jwf4elt8nwx2y46nh4zkq4gfdwa", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "opt52", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml", + "status": 0, + "tokens": "990000", + "unbonding_height": "69292", + "unbonding_time": "2020-02-08T21:58:03.841911663Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "1.000000000000000000", + "max_rate": "1.000000000000000000", + "rate": "1.000000000000000000" + }, + "update_time": "2020-01-19T15:30:05.575762778Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq5hr305vg72ugg80ss7839ngdxz0wxyas4unte2rvqw0ujsrskfnse7gr6g", + "delegator_shares": "10000000.000000000000000000", + "description": { + "details": "Investieren Sie mit uns in die besten Blockchain Projekte", + "identity": "7EBA7730A85C865C", + "moniker": "Masternode24", + "security_contact": "", + "website": "https://masternode24.de" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3", + "status": 2, + "tokens": "10000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-08T21:37:07.16971769Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqxc4hw8lq7789dzdvd8g7c9jxn0xsrklxsk80plzmu58dwtcqgzmqzj9jzx", + "delegator_shares": "4030303.030303030303030303", + "description": { + "details": "", + "identity": "", + "moniker": "ChainodeTech", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt", + "status": 2, + "tokens": "3960000", + "unbonding_height": "391156", + "unbonding_time": "2020-02-29T22:21:13.584250919Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-17T09:53:24.606476179Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqpeqmhj9cm2gwg9x8ue9pwseq43qcn9melkrh4etjnzvtpgeftt0q00xhlv", + "delegator_shares": "9078304.040404040404040404", + "description": { + "details": "Virgos are perfectionist at heart and aren’t afraid to improve skills through diligent and consistent practice. We are Virgo", + "identity": "D54A82783A3F4F8E", + "moniker": "Virgo Staking", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0", + "status": 2, + "tokens": "8907521", + "unbonding_height": "692519", + "unbonding_time": "2020-05-06T07:20:11.983156313Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-18T05:19:45.19846513Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7hk77mvfczstc4ycee5pgvy76u482jelpwvz0c0qeqa3mecwma7szq4ax0", + "delegator_shares": "19997563.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "witval", + "security_contact": "", + "website": "https://www.vitwit.com/" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh", + "status": 2, + "tokens": "19997563", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-19T13:47:32.802480914Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqj8r5dggdg34s7r0h3m39lvxhftd6xd8gq7a7qgs0dd0vwv2dr4eqptkmtc", + "delegator_shares": "117135287.169033955666346330", + "description": { + "details": "", + "identity": "", + "moniker": "lixoy", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "status": 2, + "tokens": "108340100", + "unbonding_height": "163457", + "unbonding_time": "2020-05-27T04:03:56.258314599Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-20T08:31:24.564325696Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqwenxx90h579vcytuhhsfek96d7ytsekh4k0a4tpjrqf82z0aardq92hnln", + "delegator_shares": "10100000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "prano", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m", + "status": 0, + "tokens": "10000000", + "unbonding_height": "578906", + "unbonding_time": "2020-03-13T05:05:54.182086578Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "0.900000000000000000", + "rate": "0.500000000000000000" + }, + "update_time": "2020-01-15T16:27:02.66053567Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqtnvuechcxsjtqr3lldl4txvk70cwe78gme3cvw6j2wzsc488vrpsee5pqy", + "delegator_shares": "15000000.000000000000000000", + "description": { + "details": "Let's validate this network!", + "identity": "5422BE13389B2B4D", + "moniker": "novy", + "security_contact": "", + "website": "https://stake.novy.pw" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "status": 2, + "tokens": "14430000", + "unbonding_height": "448774", + "unbonding_time": "2020-04-20T09:39:35.175761967Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T07:24:55.749752378Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq0z5wjacajplpndr99ht2wmqlyz5m4sv7zr3fm4gnslrrkghu99tqva2hnq", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Bit Cat", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79", + "status": 0, + "tokens": "990000", + "unbonding_height": "244646", + "unbonding_time": "2020-04-07T02:03:07.858492071Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-29T21:33:07.718295079Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqewtqf0tpfhv6vd00e8lx6nvgae6zd767pt7w6tfsfzcks26e49uq2eck4h", + "delegator_shares": "29997035.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Julia", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0", + "status": 2, + "tokens": "29707035", + "unbonding_height": "539056", + "unbonding_time": "2020-04-26T07:07:01.205408276Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.050000000000000000", + "max_rate": "0.250000000000000000", + "rate": "0.080000000000000000" + }, + "update_time": "2020-01-22T07:21:52.923662259Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq0enzxwhnsgt3ydzfcp698g00kdnp3vz83psl70cwj9z26xldta6skgdhu4", + "delegator_shares": "12000000.000000000000000000", + "description": { + "details": "", + "identity": "54B06E98BB583083", + "moniker": "multiverse", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw", + "status": 0, + "tokens": "11770000", + "unbonding_height": "122020", + "unbonding_time": "2020-03-30T02:10:48.068423596Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.900000000000000000" + }, + "update_time": "2020-02-19T09:43:36.468668545Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq8lqenyzv8fyg7akj7fl8a4xg9ecetu6sw4ey82qemut6d3wtqkzsdr82yg", + "delegator_shares": "29997010.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Breader", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl", + "status": 2, + "tokens": "29707010", + "unbonding_height": "588924", + "unbonding_time": "2020-04-29T13:13:34.07706811Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T20:25:59.986346556Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqmxsurupjcfz95svwa6fkv9guqflmpam0pnanjjkwkvsuz8ct46lq5kgl22", + "delegator_shares": "10.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "stakervali", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym", + "status": 0, + "tokens": "10", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-29T08:11:27.525628921Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqwp7r7hk7uwwh2n6pncay3e8d5qs6e4ma45jk5t05k7wx943qa8ksry9sqj", + "delegator_shares": "29996071.000000000000000000", + "description": { + "details": "Italian Community DPos Stakers", + "identity": "06E7A073C20F48EA", + "moniker": "ITAstakers", + "security_contact": "", + "website": "https://www.itastakers.com" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6", + "status": 2, + "tokens": "29996071", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2019-12-11T04:42:14.03384Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq3sq9937a42k30cs7mxzv4u6l8x97kl0qv4ng4hjjcwanjrvtcf2snjnyhf", + "delegator_shares": "10000000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Poseidon", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39", + "status": 2, + "tokens": "10000000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-09T09:51:06.952076756Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqhpu6fgjjpc0da52d874l0x4t50ej59qdyuxvw9k6et48yngy4rnqe4ufxd", + "delegator_shares": "6000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Cyberili", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg", + "status": 2, + "tokens": "5890000", + "unbonding_height": "596665", + "unbonding_time": "2020-03-14T08:59:37.003963438Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-29T23:13:03.183172176Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqh0ulq9t8tctrlemg0qd8e2yxk0jpfxd7pglts0zsvnm75r2srz9sfag434", + "delegator_shares": "9500000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "InchainWorks", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz", + "status": 2, + "tokens": "9500000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-16T16:28:39.442985055Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqkuwyqsrm48y0wyn6v780da22j04cttz3krd263e67m5v79kjv8yq8svrc5", + "delegator_shares": "9000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "desmosval", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw", + "status": 1, + "tokens": "8830000", + "unbonding_height": "35790", + "unbonding_time": "2020-05-18T21:39:29.542178808Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T03:29:13.684029869Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqm07f63500z2h7w02spxas7f6sfj460cq6pxg59yya700fprqluqs75nfxm", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "choose a moniker", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5", + "status": 0, + "tokens": "990000", + "unbonding_height": "241517", + "unbonding_time": "2020-02-20T03:38:43.182091804Z" + } + ] + }, + "supply": { + "supply": [ + { + "amount": "7999984460000", + "denom": "udaric" + }, + { + "amount": "80000000000000", + "denom": "upotin" + } + ] + } + }, + "chain_id": "morpheus-4000", + "consensus_params": { + "block": { + "max_bytes": "22020096", + "max_gas": "-1", + "time_iota_ms": "1000" + }, + "evidence": { + "max_age_duration": "172800000000000", + "max_age_num_blocks": "100000" + }, + "validator": { + "pub_key_types": [ + "ed25519" + ] + } + }, + "genesis_time": "2020-04-25T13:45:00Z", + "validators": [ + { + "address": "", + "name": "Athena", + "power": "10000", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "yPjnOG2sU6v9Ri5Vba+7rlRZOeM0I/4jAmYGo7yLOAA=" + } + }, + { + "address": "", + "name": "AndreyVelde", + "power": "28", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "yvQLXeXeEnOIDO7MVcKgqiWQzOArV4lVWnKU7YsQ7u8=" + } + }, + { + "address": "", + "name": "wukong", + "power": "9", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "4PDY7zcRiieGB8e04hpKX1ychinHaNg0Aht3LBd7PaI=" + } + }, + { + "address": "", + "name": "Mike Snowman Validator", + "power": "17", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "9PmdDkrVXFqOUWYS6CvVWksk3thG/CsL+SKmcF1a6Sg=" + } + }, + { + "address": "", + "name": "DragonStake", + "power": "1", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "ttOBMnEZPX5/jlhZRVbkCt0ZsBuntde+Gk3A9PRZufE=" + } + }, + { + "address": "", + "name": "Wanderer", + "power": "49", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "v/HP9951kQwr5na/qSOdUcmLs/cJyhjmupHOiatj6u4=" + } + }, + { + "address": "", + "name": "CNazar", + "power": "2", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "621TvztxvWzK42Rl3sVCWqyMWE3TqAVTzwEPOYFo+XE=" + } + }, + { + "address": "", + "name": "UbikCapital", + "power": "1", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "Q+5R/8bAtC+ooqmAwA9CXnzhN1f/giTh7yz1SmajXwc=" + } + }, + { + "address": "", + "name": "desmosval", + "power": "9", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "4K3CNRxJMyruJfzKVor9w+CwgGlaO285wSTBdPifjCo=" + } + }, + { + "address": "", + "name": "KalpaTech", + "power": "39", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "rcPdvVa/8z32gAtG6d7rXXdfg2lNulr1eYP247FPcno=" + } + }, + { + "address": "", + "name": "JayB", + "power": "10", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "q6mH85zgajAGwyFm19sFmVlDC2jRD8LcqdCkY41JK6Q=" + } + }, + { + "address": "", + "name": "Hermes", + "power": "10000", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "lP1XfhQ8ZWKCXQe8MUpLaAb5gtag+ACsWHyZb6eOaQ0=" + } + }, + { + "address": "", + "name": "Cookproman", + "power": "7", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "b73kKflpPU3PrwIoHUf50Zcikbf29BiT/l+yEkoJXWE=" + } + }, + { + "address": "", + "name": "WeStaking", + "power": "19", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "p0EyPuShYKzRMxRjfM/P6Fnbgv+vAjeImBquRDjmSW8=" + } + }, + { + "address": "", + "name": "Apollo", + "power": "10000", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "h0auzHIn6NAZwxuus+JkBlEX76TILVYF0oVNxbBH7MI=" + } + }, + { + "address": "", + "name": "DESMOS-IW", + "power": "9", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "GCrBdAffUpuMhgs0HQTvb89VUGkXQy15KG2mfnQNrD4=" + } + }, + { + "address": "", + "name": "blockscape", + "power": "37", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "RmiNuR3niBYDq+M0hKAxyIR9E/Oce+Sqfl2y62XXAwY=" + } + }, + { + "address": "", + "name": "Simply Staking", + "power": "49", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "KVUeipWtYD6b1VdX1mg4uRGv2UBr+W/t9qQ0ZL78VD0=" + } + }, + { + "address": "", + "name": "Bambarello", + "power": "77", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "DF6WaTXrURiVBhthE17m/ZRNdMl+wt4YuxZxmOPauAw=" + } + }, + { + "address": "", + "name": "Minutemen", + "power": "1", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "NELMEZAvulF02webEJY4o33l5zga3+sz52ZlCeYhXpM=" + } + }, + { + "address": "", + "name": "Masternode24", + "power": "10", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "pccX0YjyuIQd8IePEs0NMJ7jE7CvJryobAOfyUBwsmc=" + } + }, + { + "address": "", + "name": "ChainodeTech", + "power": "3", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "Nit3H+D3jlaJrGnR7BZGm80B2+aFjvD8W+UO1y8AQLY=" + } + }, + { + "address": "", + "name": "Virgo Staking", + "power": "8", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "DkG7yLjakOQUx+ZKF0MgrEGJl3n9h3rlcpiYsKMpWt4=" + } + }, + { + "address": "", + "name": "witval", + "power": "19", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "9e3vbYnAoLxUmM5oFDCe1yp1Sz8LmCfh4Mg7HecO330=" + } + }, + { + "address": "", + "name": "lixoy", + "power": "108", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "kcdGoQ1Eaw8N947iX7DXStujNOgHu+AiD2texzFNHXI=" + } + }, + { + "address": "", + "name": "novy", + "power": "14", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "XNnM4vg0JLAOP/t/VZmW8/Ds+OjeY4Y7UlOFDFTnYMM=" + } + }, + { + "address": "", + "name": "Julia", + "power": "29", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "y5YEvWFN2aY178n+bU2I7nQm+14K/O0tMEixaCtZqXg=" + } + }, + { + "address": "", + "name": "Breader", + "power": "29", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "P8GZkEw6SI920vJ+ftTILnGV81B1ckOoGd8XpsXLBYU=" + } + }, + { + "address": "", + "name": "ITAstakers", + "power": "29", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "cHw/Xt7jnXVPQZ46SOTtoCGs132tJWot9LecYtYg6e0=" + } + }, + { + "address": "", + "name": "Poseidon", + "power": "10000", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "jABSx92qrRfiHtmEyvNfOYvrfeBlZoreUsO7OQ2LwlU=" + } + }, + { + "address": "", + "name": "Cyberili", + "power": "5", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "uHmkolIOHt7RTT+r95qro/MqFA0nDMcW2srqck0EqOY=" + } + }, + { + "address": "", + "name": "InchainWorks", + "power": "9", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "u/nwFWdeFj/naHgafKiGs+QUmb4KPrg8UGT36g1QGIs=" + } + } + ] +} diff --git a/x/profiles/alias.go b/x/profiles/alias.go index 01842236b4..d16b16c4d0 100644 --- a/x/profiles/alias.go +++ b/x/profiles/alias.go @@ -15,6 +15,10 @@ const ( OpWeightMsgDeleteProfile = simulation.OpWeightMsgDeleteProfile DefaultGasValue = simulation.DefaultGasValue ParamsKey = simulation.ParamsKey + EventTypeProfileSaved = types.EventTypeProfileSaved + EventTypeProfileDeleted = types.EventTypeProfileDeleted + AttributeProfileDtag = types.AttributeProfileDtag + AttributeProfileCreator = types.AttributeProfileCreator DefaultParamspace = types.DefaultParamspace ModuleName = types.ModuleName RouterKey = types.RouterKey @@ -25,25 +29,17 @@ const ( QueryProfile = types.QueryProfile QueryProfiles = types.QueryProfiles QueryParams = types.QueryParams - EventTypeProfileSaved = types.EventTypeProfileSaved - EventTypeProfileDeleted = types.EventTypeProfileDeleted - AttributeProfileDtag = types.AttributeProfileDtag - AttributeProfileCreator = types.AttributeProfileCreator ) var ( // functions aliases - NewHandler = keeper.NewHandler - ValidateProfile = keeper.ValidateProfile - NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier RegisterInvariants = keeper.RegisterInvariants AllInvariants = keeper.AllInvariants ValidProfileInvariant = keeper.ValidProfileInvariant - ParamChanges = simulation.ParamChanges - DecodeStore = simulation.DecodeStore - SimulateMsgSaveProfile = simulation.SimulateMsgSaveProfile - SimulateMsgDeleteProfile = simulation.SimulateMsgDeleteProfile + NewHandler = keeper.NewHandler + ValidateProfile = keeper.ValidateProfile + NewKeeper = keeper.NewKeeper NewRandomProfile = simulation.NewRandomProfile RandomProfile = simulation.RandomProfile RandomDTag = simulation.RandomDTag @@ -57,6 +53,13 @@ var ( RandomBioParams = simulation.RandomBioParams WeightedOperations = simulation.WeightedOperations RandomizedGenState = simulation.RandomizedGenState + ParamChanges = simulation.ParamChanges + DecodeStore = simulation.DecodeStore + SimulateMsgSaveProfile = simulation.SimulateMsgSaveProfile + SimulateMsgDeleteProfile = simulation.SimulateMsgDeleteProfile + NewProfile = types.NewProfile + NewProfiles = types.NewProfiles + NewPictures = types.NewPictures NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis @@ -75,9 +78,6 @@ var ( NewMsgDeleteProfile = types.NewMsgDeleteProfile ProfileStoreKey = types.ProfileStoreKey DtagStoreKey = types.DtagStoreKey - NewProfile = types.NewProfile - NewProfiles = types.NewProfiles - NewPictures = types.NewPictures // variable aliases ModuleCdc = types.ModuleCdc @@ -97,13 +97,13 @@ var ( type ( Keeper = keeper.Keeper + Profile = types.Profile + Profiles = types.Profiles + Pictures = types.Pictures GenesisState = types.GenesisState Params = types.Params MonikerParams = types.MonikerParams DtagParams = types.DtagParams MsgSaveProfile = types.MsgSaveProfile MsgDeleteProfile = types.MsgDeleteProfile - Profile = types.Profile - Profiles = types.Profiles - Pictures = types.Pictures ) diff --git a/x/reports/alias.go b/x/reports/alias.go index 7f429d4003..7b86e85746 100755 --- a/x/reports/alias.go +++ b/x/reports/alias.go @@ -16,66 +16,66 @@ import ( ) const ( - OpWeightMsgReportPost = simulation.OpWeightMsgReportPost - DefaultGasValue = simulation.DefaultGasValue - EventTypePostReported = types.EventTypePostReported - AttributeKeyPostID = types.AttributeKeyPostID - AttributeKeyReportOwner = types.AttributeKeyReportOwner ModuleName = common.ModuleName RouterKey = common.RouterKey StoreKey = common.StoreKey ActionReportPost = common.ActionReportPost QuerierRoute = common.QuerierRoute QueryReports = common.QueryReports + OpWeightMsgReportPost = simulation.OpWeightMsgReportPost + DefaultGasValue = simulation.DefaultGasValue + EventTypePostReported = types.EventTypePostReported + AttributeKeyPostID = types.AttributeKeyPostID + AttributeKeyReportOwner = types.AttributeKeyReportOwner ) var ( // functions aliases + RegisterRoutes = rest.RegisterRoutes + NewQuerier = keeper.NewQuerier + RegisterInvariants = keeper.RegisterInvariants + AllInvariants = keeper.AllInvariants + ValidReportsIDs = keeper.ValidReportsIDs + NewHandler = keeper.NewHandler + NewKeeper = keeper.NewKeeper + SimulateMsgReportPost = simulation.SimulateMsgReportPost + RandomReportsData = simulation.RandomReportsData + RandomPostID = simulation.RandomPostID + RandomReportMessage = simulation.RandomReportMessage + RandomReportTypes = simulation.RandomReportTypes + WeightedOperations = simulation.WeightedOperations + RandomizedGenState = simulation.RandomizedGenState + DecodeStore = simulation.DecodeStore NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis RegisterCodec = types.RegisterCodec - ReportStoreKey = models.ReportStoreKey - NewReportResponse = models.NewReportResponse NewReport = models.NewReport RegisterModelsCodec = models.RegisterModelsCodec - RegisterMessagesCodec = msgs.RegisterMessagesCodec + ReportStoreKey = models.ReportStoreKey + NewReportResponse = models.NewReportResponse NewMsgReportPost = msgs.NewMsgReportPost + RegisterMessagesCodec = msgs.RegisterMessagesCodec GetQueryCmd = cli.GetQueryCmd GetCmdQueryPostReports = cli.GetCmdQueryPostReports GetTxCmd = cli.GetTxCmd GetCmdReportPost = cli.GetCmdReportPost - RegisterRoutes = rest.RegisterRoutes - NewHandler = keeper.NewHandler - NewKeeper = keeper.NewKeeper - NewQuerier = keeper.NewQuerier - RegisterInvariants = keeper.RegisterInvariants - AllInvariants = keeper.AllInvariants - ValidReportsIDs = keeper.ValidReportsIDs - WeightedOperations = simulation.WeightedOperations - RandomizedGenState = simulation.RandomizedGenState - DecodeStore = simulation.DecodeStore - SimulateMsgReportPost = simulation.SimulateMsgReportPost - RandomReportsData = simulation.RandomReportsData - RandomPostID = simulation.RandomPostID - RandomReportMessage = simulation.RandomReportMessage - RandomReportTypes = simulation.RandomReportTypes // variable aliases - ModelsCdc = models.ModelsCdc ReportsStorePrefix = common.ReportsStorePrefix ReportsTypeStorePrefix = common.ReportsTypeStorePrefix MsgsCodec = msgs.MsgsCodec ModuleCdc = types.ModuleCdc + ModelsCdc = models.ModelsCdc ) type ( - GenesisState = types.GenesisState - ReportsQueryResponse = models.ReportsQueryResponse Report = models.Report Reports = models.Reports + ReportsQueryResponse = models.ReportsQueryResponse MsgReportPost = msgs.MsgReportPost ReportPostReq = rest.ReportPostReq Keeper = keeper.Keeper ReportsData = simulation.ReportsData + GenesisState = types.GenesisState ) diff --git a/x/reports/internal/simulation/genesis.go b/x/reports/internal/simulation/genesis.go index aaaa104bdf..596349ef49 100644 --- a/x/reports/internal/simulation/genesis.go +++ b/x/reports/internal/simulation/genesis.go @@ -14,7 +14,7 @@ func RandomizedGenState(simState *module.SimulationState) { } func randomReports(simState *module.SimulationState) (reportsMap map[string]types.Reports) { - reportsMapLen := simState.Rand.Intn(simState.Rand.Intn(50)) + reportsMapLen := simState.Rand.Intn(50) reportsMap = make(map[string]types.Reports, reportsMapLen) for i := 0; i < reportsMapLen; i++ { diff --git a/x/reports/internal/types/alias.go b/x/reports/internal/types/alias.go index a469203fe9..b61ff356a5 100644 --- a/x/reports/internal/types/alias.go +++ b/x/reports/internal/types/alias.go @@ -21,12 +21,12 @@ const ( var ( // functions aliases - NewMsgReportPost = msgs.NewMsgReportPost - RegisterMessagesCodec = msgs.RegisterMessagesCodec ReportStoreKey = models.ReportStoreKey NewReportResponse = models.NewReportResponse NewReport = models.NewReport RegisterModelsCodec = models.RegisterModelsCodec + NewMsgReportPost = msgs.NewMsgReportPost + RegisterMessagesCodec = msgs.RegisterMessagesCodec // variable aliases ModelsCdc = models.ModelsCdc From a0512cd4941faf1ea4b31bc2794bd49ee6455cc8 Mon Sep 17 00:00:00 2001 From: bragaz Date: Wed, 1 Jul 2020 12:48:46 +0200 Subject: [PATCH 10/11] fixed suggestions added migrate test to profiles --- x/magpie/alias.go | 14 +- x/posts/alias.go | 92 +- x/posts/internal/keeper/alias_functions.go | 23 - x/posts/internal/keeper/common_functions.go | 55 + x/posts/internal/keeper/handler.go | 29 - x/posts/internal/keeper/keeper.go | 2 +- x/posts/internal/keeper/querier_test.go | 2 +- x/posts/internal/types/alias.go | 44 +- x/posts/internal/types/models/alias.go | 20 +- x/posts/internal/types/params.go | 4 +- x/posts/legacy/v0.8.0/migrate.go | 2 +- x/posts/legacy/v0.8.0/migrate_test.go | 26 +- x/posts/legacy/v0.8.0/types.go | 2 +- x/profiles/alias.go | 48 +- x/profiles/legacy/v0.8.0/migrate_test.go | 39 + x/profiles/legacy/v0.8.0/v060state.json | 79424 ++++++++++++++++++ x/reports/alias.go | 44 +- x/reports/internal/types/alias.go | 2 +- 18 files changed, 79669 insertions(+), 203 deletions(-) delete mode 100644 x/posts/internal/keeper/alias_functions.go create mode 100644 x/posts/internal/keeper/common_functions.go create mode 100644 x/profiles/legacy/v0.8.0/v060state.json diff --git a/x/magpie/alias.go b/x/magpie/alias.go index e01a648a02..29c8b82ac2 100644 --- a/x/magpie/alias.go +++ b/x/magpie/alias.go @@ -11,8 +11,6 @@ import ( ) const ( - QuerySessions = keeper.QuerySessions - OpWeightMsgCreatePost = simulation.OpWeightMsgCreatePost ModuleName = types.ModuleName RouterKey = types.RouterKey StoreKey = types.StoreKey @@ -23,19 +21,17 @@ const ( AttributeKeyExternalOwner = types.AttributeKeyExternalOwner AttributeKeyExpiry = types.AttributeKeyExpiry AttributeValueCategory = types.AttributeValueCategory + QuerySessions = keeper.QuerySessions + OpWeightMsgCreatePost = simulation.OpWeightMsgCreatePost ) var ( // functions aliases - NewHandler = keeper.NewHandler - NewKeeper = keeper.NewKeeper - NewQuerier = keeper.NewQuerier RandomSessionData = simulation.RandomSessionData WeightedOperations = simulation.WeightedOperations SimulateMsgCreateSession = simulation.SimulateMsgCreateSession RandomizedGenState = simulation.RandomizedGenState DecodeStore = simulation.DecodeStore - RegisterCodec = types.RegisterCodec NewMsgCreateSession = types.NewMsgCreateSession SessionStoreKey = types.SessionStoreKey ParseSessionID = types.ParseSessionID @@ -43,13 +39,17 @@ var ( NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis + RegisterCodec = types.RegisterCodec + NewHandler = keeper.NewHandler + NewKeeper = keeper.NewKeeper + NewQuerier = keeper.NewQuerier // variable aliases RandomNamespaces = simulation.RandomNamespaces - ModuleCdc = types.ModuleCdc SessionLengthKey = types.SessionLengthKey LastSessionIDStoreKey = types.LastSessionIDStoreKey SessionStorePrefix = types.SessionStorePrefix + ModuleCdc = types.ModuleCdc ) type ( diff --git a/x/posts/alias.go b/x/posts/alias.go index 8a3d2a4377..42a7448df8 100644 --- a/x/posts/alias.go +++ b/x/posts/alias.go @@ -65,25 +65,8 @@ const ( var ( // functions aliases - NewPollData = polls.NewPollData - ArePollDataEquals = polls.ArePollDataEquals - NewUserAnswer = polls.NewUserAnswer - NewUserAnswers = polls.NewUserAnswers - ParseAnswerID = polls.ParseAnswerID - NewPollAnswer = polls.NewPollAnswer - NewPollAnswers = polls.NewPollAnswers - NewPostReaction = reactions.NewPostReaction - NewPostReactions = reactions.NewPostReactions - NewReaction = reactions.NewReaction - IsEmoji = reactions.IsEmoji - NewReactions = reactions.NewReactions - NewMsgAddPostReaction = msgs.NewMsgAddPostReaction - NewMsgRemovePostReaction = msgs.NewMsgRemovePostReaction - NewMsgAnswerPoll = msgs.NewMsgAnswerPoll - NewMsgCreatePost = msgs.NewMsgCreatePost - NewMsgEditPost = msgs.NewMsgEditPost - NewMsgRegisterReaction = msgs.NewMsgRegisterReaction - RegisterMessagesCodec = msgs.RegisterMessagesCodec + NewKeeper = keeper.NewKeeper + ValidatePost = keeper.ValidatePost NewQuerier = keeper.NewQuerier RegisterInvariants = keeper.RegisterInvariants AllInvariants = keeper.AllInvariants @@ -92,10 +75,6 @@ var ( ValidPostForReactionsInvariant = keeper.ValidPostForReactionsInvariant ValidPollForPollAnswersInvariant = keeper.ValidPollForPollAnswersInvariant NewHandler = keeper.NewHandler - ValidatePost = keeper.ValidatePost - NewKeeper = keeper.NewKeeper - DecodeStore = simulation.DecodeStore - SimulateMsgAnswerToPoll = simulation.SimulateMsgAnswerToPoll SimulateMsgAddPostReaction = simulation.SimulateMsgAddPostReaction SimulateMsgRemovePostReaction = simulation.SimulateMsgRemovePostReaction SimulateMsgRegisterReaction = simulation.SimulateMsgRegisterReaction @@ -121,6 +100,9 @@ var ( WeightedOperations = simulation.WeightedOperations RandomizedGenState = simulation.RandomizedGenState ParamChanges = simulation.ParamChanges + DecodeStore = simulation.DecodeStore + SimulateMsgAnswerToPoll = simulation.SimulateMsgAnswerToPoll + RegisterCodec = types.RegisterCodec ParamKeyTable = types.ParamKeyTable NewParams = types.NewParams DefaultParams = types.DefaultParams @@ -131,7 +113,6 @@ var ( NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis - RegisterCodec = types.RegisterCodec PostStoreKey = models.PostStoreKey PostCommentsStoreKey = models.PostCommentsStoreKey PostReactionsStoreKey = models.PostReactionsStoreKey @@ -142,22 +123,40 @@ var ( ParsePostID = models.ParsePostID NewPost = models.NewPost NewPostResponse = models.NewPostResponse + GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue NewPostMedia = common.NewPostMedia ValidateURI = common.ValidateURI NewPostMedias = common.NewPostMedias - GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue + ParseAnswerID = polls.ParseAnswerID + NewPollAnswer = polls.NewPollAnswer + NewPollAnswers = polls.NewPollAnswers + NewPollData = polls.NewPollData + ArePollDataEquals = polls.ArePollDataEquals + NewUserAnswer = polls.NewUserAnswer + NewUserAnswers = polls.NewUserAnswers + NewPostReaction = reactions.NewPostReaction + NewPostReactions = reactions.NewPostReactions + NewReaction = reactions.NewReaction + IsEmoji = reactions.IsEmoji + NewReactions = reactions.NewReactions + NewMsgCreatePost = msgs.NewMsgCreatePost + NewMsgEditPost = msgs.NewMsgEditPost + NewMsgRegisterReaction = msgs.NewMsgRegisterReaction + RegisterMessagesCodec = msgs.RegisterMessagesCodec + NewMsgAddPostReaction = msgs.NewMsgAddPostReaction + NewMsgRemovePostReaction = msgs.NewMsgRemovePostReaction + NewMsgAnswerPoll = msgs.NewMsgAnswerPoll // variable aliases - MsgsCodec = msgs.MsgsCodec RandomMimeTypes = simulation.RandomMimeTypes RandomHosts = simulation.RandomHosts + ModuleCdc = types.ModuleCdc DefaultMaxPostMessageLength = types.DefaultMaxPostMessageLength DefaultMaxOptionalDataFieldsNumber = types.DefaultMaxOptionalDataFieldsNumber DefaultMaxOptionalDataFieldValueLength = types.DefaultMaxOptionalDataFieldValueLength MaxPostMessageLengthKey = types.MaxPostMessageLengthKey MaxOptionalDataFieldsNumberKey = types.MaxOptionalDataFieldsNumberKey MaxOptionalDataFieldValueLengthKey = types.MaxOptionalDataFieldValueLengthKey - ModuleCdc = types.ModuleCdc ModelsCdc = models.ModelsCdc Sha256RegEx = common.Sha256RegEx HashtagRegEx = common.HashtagRegEx @@ -169,40 +168,41 @@ var ( PostReactionsStorePrefix = common.PostReactionsStorePrefix ReactionsStorePrefix = common.ReactionsStorePrefix PollAnswersStorePrefix = common.PollAnswersStorePrefix + MsgsCodec = msgs.MsgsCodec ) type ( - PollAnswersQueryResponse = models.PollAnswersQueryResponse + MsgCreatePost = msgs.MsgCreatePost + MsgEditPost = msgs.MsgEditPost + MsgRegisterReaction = msgs.MsgRegisterReaction + MsgAddPostReaction = msgs.MsgAddPostReaction + MsgRemovePostReaction = msgs.MsgRemovePostReaction + MsgAnswerPoll = msgs.MsgAnswerPoll + Keeper = keeper.Keeper + PostData = simulation.PostData + PostReactionData = simulation.PostReactionData + ReactionData = simulation.ReactionData + Params = types.Params + QueryPostsParams = types.QueryPostsParams + GenesisState = types.GenesisState PostID = models.PostID PostIDs = models.PostIDs Post = models.Post Posts = models.Posts PostQueryResponse = models.PostQueryResponse - PostMedia = common.PostMedia - PostMedias = common.PostMedias + PollAnswersQueryResponse = models.PollAnswersQueryResponse OptionalData = common.OptionalData KeyValue = common.KeyValue - PollData = polls.PollData - UserAnswer = polls.UserAnswer - UserAnswers = polls.UserAnswers + PostMedia = common.PostMedia + PostMedias = common.PostMedias AnswerID = polls.AnswerID PollAnswer = polls.PollAnswer PollAnswers = polls.PollAnswers + PollData = polls.PollData + UserAnswer = polls.UserAnswer + UserAnswers = polls.UserAnswers PostReaction = reactions.PostReaction PostReactions = reactions.PostReactions Reaction = reactions.Reaction Reactions = reactions.Reactions - MsgAddPostReaction = msgs.MsgAddPostReaction - MsgRemovePostReaction = msgs.MsgRemovePostReaction - MsgAnswerPoll = msgs.MsgAnswerPoll - MsgCreatePost = msgs.MsgCreatePost - MsgEditPost = msgs.MsgEditPost - MsgRegisterReaction = msgs.MsgRegisterReaction - Keeper = keeper.Keeper - PostData = simulation.PostData - PostReactionData = simulation.PostReactionData - ReactionData = simulation.ReactionData - Params = types.Params - QueryPostsParams = types.QueryPostsParams - GenesisState = types.GenesisState ) diff --git a/x/posts/internal/keeper/alias_functions.go b/x/posts/internal/keeper/alias_functions.go deleted file mode 100644 index 9a9e19978a..0000000000 --- a/x/posts/internal/keeper/alias_functions.go +++ /dev/null @@ -1,23 +0,0 @@ -package keeper - -import ( - sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/desmos-labs/desmos/x/posts/internal/types" -) - -// IteratePosts iterates through the posts set and performs the provided function -func (k Keeper) IteratePosts(ctx sdk.Context, fn func(index int64, post types.Post) (stop bool)) { - store := ctx.KVStore(k.StoreKey) - iterator := sdk.KVStorePrefixIterator(store, types.PostStorePrefix) - defer iterator.Close() - i := int64(0) - for ; iterator.Valid(); iterator.Next() { - var post types.Post - k.Cdc.MustUnmarshalBinaryBare(iterator.Value(), &post) - stop := fn(i, post) - if stop { - break - } - i++ - } -} diff --git a/x/posts/internal/keeper/common_functions.go b/x/posts/internal/keeper/common_functions.go new file mode 100644 index 0000000000..b144ff3075 --- /dev/null +++ b/x/posts/internal/keeper/common_functions.go @@ -0,0 +1,55 @@ +package keeper + +import ( + "fmt" + + sdk "github.com/cosmos/cosmos-sdk/types" + sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/desmos-labs/desmos/x/posts/internal/types" +) + +// IteratePosts iterates through the posts set and performs the provided function +func (k Keeper) IteratePosts(ctx sdk.Context, fn func(index int64, post types.Post) (stop bool)) { + store := ctx.KVStore(k.StoreKey) + iterator := sdk.KVStorePrefixIterator(store, types.PostStorePrefix) + defer iterator.Close() + i := int64(0) + for ; iterator.Valid(); iterator.Next() { + var post types.Post + k.Cdc.MustUnmarshalBinaryBare(iterator.Value(), &post) + stop := fn(i, post) + if stop { + break + } + i++ + } +} + +// ValidatePost checks if the given post is valid according to the current posts' module params +func ValidatePost(ctx sdk.Context, k Keeper, post types.Post) error { + params := k.GetParams(ctx) + maxMsgLen := params.MaxPostMessageLength.Int64() + maxOpFieldNum := params.MaxOptionalDataFieldsNumber.Int64() + maxOpFieldValLen := params.MaxOptionalDataFieldValueLength.Int64() + + if int64(len(post.Message)) > maxMsgLen { + return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, + fmt.Sprintf("Post message cannot exceed %d characters", maxMsgLen)) + } + + if int64(len(post.OptionalData)) > maxOpFieldNum { + return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, + fmt.Sprintf("Post optional data cannot contain more than %d key-value pairs", + maxOpFieldNum)) + } + + for key, value := range post.OptionalData { + if int64(len(value)) > maxOpFieldValLen { + return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, + fmt.Sprintf("post optional data values cannot exceed %d characters. %s of post with id %s is longer than this", + maxOpFieldValLen, key, post.PostID)) + } + } + + return nil +} diff --git a/x/posts/internal/keeper/handler.go b/x/posts/internal/keeper/handler.go index c95ccb872f..f04f3be841 100644 --- a/x/posts/internal/keeper/handler.go +++ b/x/posts/internal/keeper/handler.go @@ -35,35 +35,6 @@ func NewHandler(keeper Keeper) sdk.Handler { } } -// ValidatePost checks if the given post is valid according to the current posts' module params -func ValidatePost(ctx sdk.Context, k Keeper, post types.Post) error { - params := k.GetParams(ctx) - maxMsgLen := params.MaxPostMessageLength.Int64() - maxOpFieldNum := params.MaxOptionalDataFieldsNumber.Int64() - maxOpFieldValLen := params.MaxOptionalDataFieldValueLength.Int64() - - if len(post.Message) > int(maxMsgLen) { - return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, - fmt.Sprintf("Post message cannot exceed %d characters", maxMsgLen)) - } - - if len(post.OptionalData) > int(maxOpFieldNum) { - return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, - fmt.Sprintf("Post optional data cannot contain more than %d key-value pairs", - maxOpFieldNum)) - } - - for key, value := range post.OptionalData { - if len(value) > int(maxOpFieldValLen) { - return sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, - fmt.Sprintf("post optional data values cannot exceed %d characters. %s of post with id %s is longer than this", - maxOpFieldValLen, key, post.PostID)) - } - } - - return nil -} - // handleMsgCreatePost handles the creation of a new post func handleMsgCreatePost(ctx sdk.Context, keeper Keeper, msg types.MsgCreatePost) (*sdk.Result, error) { post := types.NewPost( diff --git a/x/posts/internal/keeper/keeper.go b/x/posts/internal/keeper/keeper.go index ddefac2d38..c7dfe2c316 100644 --- a/x/posts/internal/keeper/keeper.go +++ b/x/posts/internal/keeper/keeper.go @@ -19,7 +19,7 @@ type Keeper struct { Cdc *codec.Codec // The wire codec for binary encoding/decoding. } -// NewKeeper creates new instances of the magpie Keeper +// NewKeeper creates new instances of the posts Keeper func NewKeeper(cdc *codec.Codec, storeKey sdk.StoreKey, paramSpace params.Subspace) Keeper { if !paramSpace.HasKeyTable() { paramSpace = paramSpace.WithKeyTable(types.ParamKeyTable()) diff --git a/x/posts/internal/keeper/querier_test.go b/x/posts/internal/keeper/querier_test.go index 4b73667d1d..f5c3b59f09 100644 --- a/x/posts/internal/keeper/querier_test.go +++ b/x/posts/internal/keeper/querier_test.go @@ -496,7 +496,7 @@ func Test_queryParams(t *testing.T) { expResult types.Params }{ { - name: "Returning profile parameters correctly", + name: "Returning posts parameters correctly", path: []string{types.QueryParams}, expResult: types.DefaultParams(), }, diff --git a/x/posts/internal/types/alias.go b/x/posts/internal/types/alias.go index a34d64aa1a..f9e35f7258 100755 --- a/x/posts/internal/types/alias.go +++ b/x/posts/internal/types/alias.go @@ -36,6 +36,20 @@ const ( var ( // functions aliases + ComputeID = models.ComputeID + ParsePostID = models.ParsePostID + NewPost = models.NewPost + NewPostResponse = models.NewPostResponse + PostStoreKey = models.PostStoreKey + PostCommentsStoreKey = models.PostCommentsStoreKey + PostReactionsStoreKey = models.PostReactionsStoreKey + ReactionsStoreKey = models.ReactionsStoreKey + PollAnswersStoreKey = models.PollAnswersStoreKey + RegisterModelsCodec = models.RegisterModelsCodec + NewPostMedia = common.NewPostMedia + ValidateURI = common.ValidateURI + NewPostMedias = common.NewPostMedias + GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue ParseAnswerID = polls.ParseAnswerID NewPollAnswer = polls.NewPollAnswer NewPollAnswers = polls.NewPollAnswers @@ -55,24 +69,8 @@ var ( NewMsgEditPost = msgs.NewMsgEditPost NewMsgRegisterReaction = msgs.NewMsgRegisterReaction RegisterMessagesCodec = msgs.RegisterMessagesCodec - ComputeID = models.ComputeID - ParsePostID = models.ParsePostID - NewPost = models.NewPost - NewPostResponse = models.NewPostResponse - PostStoreKey = models.PostStoreKey - PostCommentsStoreKey = models.PostCommentsStoreKey - PostReactionsStoreKey = models.PostReactionsStoreKey - ReactionsStoreKey = models.ReactionsStoreKey - PollAnswersStoreKey = models.PollAnswersStoreKey - RegisterModelsCodec = models.RegisterModelsCodec - NewPostMedia = common.NewPostMedia - ValidateURI = common.ValidateURI - NewPostMedias = common.NewPostMedias - GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue // variable aliases - MsgsCodec = msgs.MsgsCodec - ModelsCdc = models.ModelsCdc Sha256RegEx = common.Sha256RegEx HashtagRegEx = common.HashtagRegEx ShortCodeRegEx = common.ShortCodeRegEx @@ -83,15 +81,11 @@ var ( PostReactionsStorePrefix = common.PostReactionsStorePrefix ReactionsStorePrefix = common.ReactionsStorePrefix PollAnswersStorePrefix = common.PollAnswersStorePrefix + MsgsCodec = msgs.MsgsCodec + ModelsCdc = models.ModelsCdc ) type ( - PostID = models.PostID - PostIDs = models.PostIDs - Post = models.Post - Posts = models.Posts - PostQueryResponse = models.PostQueryResponse - PollAnswersQueryResponse = models.PollAnswersQueryResponse PostMedia = common.PostMedia PostMedias = common.PostMedias OptionalData = common.OptionalData @@ -112,4 +106,10 @@ type ( MsgCreatePost = msgs.MsgCreatePost MsgEditPost = msgs.MsgEditPost MsgRegisterReaction = msgs.MsgRegisterReaction + PostID = models.PostID + PostIDs = models.PostIDs + Post = models.Post + Posts = models.Posts + PostQueryResponse = models.PostQueryResponse + PollAnswersQueryResponse = models.PollAnswersQueryResponse ) diff --git a/x/posts/internal/types/models/alias.go b/x/posts/internal/types/models/alias.go index 9b2f5da129..23f5f19c1c 100755 --- a/x/posts/internal/types/models/alias.go +++ b/x/posts/internal/types/models/alias.go @@ -34,22 +34,22 @@ const ( var ( // functions aliases - ParseAnswerID = polls.ParseAnswerID - NewPollAnswer = polls.NewPollAnswer - NewPollAnswers = polls.NewPollAnswers + GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue + NewPostMedia = common.NewPostMedia + ValidateURI = common.ValidateURI + NewPostMedias = common.NewPostMedias NewPollData = polls.NewPollData ArePollDataEquals = polls.ArePollDataEquals NewUserAnswer = polls.NewUserAnswer NewUserAnswers = polls.NewUserAnswers + ParseAnswerID = polls.ParseAnswerID + NewPollAnswer = polls.NewPollAnswer + NewPollAnswers = polls.NewPollAnswers NewPostReaction = reactions.NewPostReaction NewPostReactions = reactions.NewPostReactions NewReaction = reactions.NewReaction IsEmoji = reactions.IsEmoji NewReactions = reactions.NewReactions - NewPostMedia = common.NewPostMedia - ValidateURI = common.ValidateURI - NewPostMedias = common.NewPostMedias - GetEmojiByShortCodeOrValue = common.GetEmojiByShortCodeOrValue // variable aliases Sha256RegEx = common.Sha256RegEx @@ -69,12 +69,12 @@ type ( KeyValue = common.KeyValue PostMedia = common.PostMedia PostMedias = common.PostMedias - AnswerID = polls.AnswerID - PollAnswer = polls.PollAnswer - PollAnswers = polls.PollAnswers PollData = polls.PollData UserAnswer = polls.UserAnswer UserAnswers = polls.UserAnswers + AnswerID = polls.AnswerID + PollAnswer = polls.PollAnswer + PollAnswers = polls.PollAnswers PostReaction = reactions.PostReaction PostReactions = reactions.PostReactions Reaction = reactions.Reaction diff --git a/x/posts/internal/types/params.go b/x/posts/internal/types/params.go index e895b38f2e..4f12f34d68 100644 --- a/x/posts/internal/types/params.go +++ b/x/posts/internal/types/params.go @@ -13,7 +13,7 @@ const ( DefaultParamspace = ModuleName ) -// Default profile paramsModule +// Default posts params var ( DefaultMaxPostMessageLength = sdk.NewInt(500) DefaultMaxOptionalDataFieldsNumber = sdk.NewInt(10) @@ -47,7 +47,7 @@ func NewParams(maxPostMLen, maxOpDataFieldNum, maxOpDataFieldValLen sdk.Int) Par } } -// DefaultParams return default paramsModule +// DefaultParams return default params object func DefaultParams() Params { return Params{ MaxPostMessageLength: DefaultMaxPostMessageLength, diff --git a/x/posts/legacy/v0.8.0/migrate.go b/x/posts/legacy/v0.8.0/migrate.go index 14f63227fa..fe0d55950f 100644 --- a/x/posts/legacy/v0.8.0/migrate.go +++ b/x/posts/legacy/v0.8.0/migrate.go @@ -1,4 +1,4 @@ -package v060 +package v080 import ( sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/posts/legacy/v0.8.0/migrate_test.go b/x/posts/legacy/v0.8.0/migrate_test.go index eaadabba3e..f00f25d8c5 100644 --- a/x/posts/legacy/v0.8.0/migrate_test.go +++ b/x/posts/legacy/v0.8.0/migrate_test.go @@ -1,4 +1,4 @@ -package v060_test +package v080_test import ( "encoding/json" @@ -163,7 +163,7 @@ func TestMigrate(t *testing.T) { } -func TestMigrate060(t *testing.T) { +func TestMigrate080(t *testing.T) { config := sdk.GetConfig() config.SetBech32PrefixForAccount("desmos", "desmos"+sdk.PrefixPublic) config.Seal() @@ -186,21 +186,21 @@ func TestMigrate060(t *testing.T) { require.Error(t, err) } - // Make sure the posts are all the same + // Make sure that all the posts are migrated require.Equal(t, len(v080state.Posts), len(v060state.Posts)) - for index, post := range v080state.Posts { - require.Equal(t, post, v060state.Posts[index]) - } - // Make sure the reactions are all the same + // Make sure all the reactions are migrated require.Equal(t, len(v080state.PostReactions), len(v060state.PostReactions)) - for index, postReactions := range v080state.PostReactions { - require.Contains(t, postReactions, v060state.PostReactions[index]) - } - // Make sure the poll answers are all the same + // Make sure all the poll answers are migrated require.Equal(t, len(v080state.UsersPollAnswers), len(v060state.UsersPollAnswers)) - for index, answer := range v080state.UsersPollAnswers { - require.Equal(t, answer, v060state.UsersPollAnswers[index]) + + params := v080.Params{ + MaxPostMessageLength: sdk.NewInt(500), + MaxOptionalDataFieldsNumber: sdk.NewInt(10), + MaxOptionalDataFieldValueLength: sdk.NewInt(200), } + + // make sure params are properly set + require.Equal(t, params, v080state.Params) } diff --git a/x/posts/legacy/v0.8.0/types.go b/x/posts/legacy/v0.8.0/types.go index 8c7f90e814..aac6c6fdde 100644 --- a/x/posts/legacy/v0.8.0/types.go +++ b/x/posts/legacy/v0.8.0/types.go @@ -1,4 +1,4 @@ -package v060 +package v080 import ( sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/profiles/alias.go b/x/profiles/alias.go index d16b16c4d0..7619ce683b 100644 --- a/x/profiles/alias.go +++ b/x/profiles/alias.go @@ -15,10 +15,6 @@ const ( OpWeightMsgDeleteProfile = simulation.OpWeightMsgDeleteProfile DefaultGasValue = simulation.DefaultGasValue ParamsKey = simulation.ParamsKey - EventTypeProfileSaved = types.EventTypeProfileSaved - EventTypeProfileDeleted = types.EventTypeProfileDeleted - AttributeProfileDtag = types.AttributeProfileDtag - AttributeProfileCreator = types.AttributeProfileCreator DefaultParamspace = types.DefaultParamspace ModuleName = types.ModuleName RouterKey = types.RouterKey @@ -29,17 +25,25 @@ const ( QueryProfile = types.QueryProfile QueryProfiles = types.QueryProfiles QueryParams = types.QueryParams + EventTypeProfileSaved = types.EventTypeProfileSaved + EventTypeProfileDeleted = types.EventTypeProfileDeleted + AttributeProfileDtag = types.AttributeProfileDtag + AttributeProfileCreator = types.AttributeProfileCreator ) var ( // functions aliases + NewHandler = keeper.NewHandler + ValidateProfile = keeper.ValidateProfile + NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier RegisterInvariants = keeper.RegisterInvariants AllInvariants = keeper.AllInvariants ValidProfileInvariant = keeper.ValidProfileInvariant - NewHandler = keeper.NewHandler - ValidateProfile = keeper.ValidateProfile - NewKeeper = keeper.NewKeeper + ParamChanges = simulation.ParamChanges + DecodeStore = simulation.DecodeStore + SimulateMsgSaveProfile = simulation.SimulateMsgSaveProfile + SimulateMsgDeleteProfile = simulation.SimulateMsgDeleteProfile NewRandomProfile = simulation.NewRandomProfile RandomProfile = simulation.RandomProfile RandomDTag = simulation.RandomDTag @@ -53,17 +57,6 @@ var ( RandomBioParams = simulation.RandomBioParams WeightedOperations = simulation.WeightedOperations RandomizedGenState = simulation.RandomizedGenState - ParamChanges = simulation.ParamChanges - DecodeStore = simulation.DecodeStore - SimulateMsgSaveProfile = simulation.SimulateMsgSaveProfile - SimulateMsgDeleteProfile = simulation.SimulateMsgDeleteProfile - NewProfile = types.NewProfile - NewProfiles = types.NewProfiles - NewPictures = types.NewPictures - NewGenesisState = types.NewGenesisState - DefaultGenesisState = types.DefaultGenesisState - ValidateGenesis = types.ValidateGenesis - RegisterCodec = types.RegisterCodec ParamKeyTable = types.ParamKeyTable NewParams = types.NewParams DefaultParams = types.DefaultParams @@ -78,9 +71,15 @@ var ( NewMsgDeleteProfile = types.NewMsgDeleteProfile ProfileStoreKey = types.ProfileStoreKey DtagStoreKey = types.DtagStoreKey + NewProfile = types.NewProfile + NewProfiles = types.NewProfiles + NewPictures = types.NewPictures + NewGenesisState = types.NewGenesisState + DefaultGenesisState = types.DefaultGenesisState + ValidateGenesis = types.ValidateGenesis + RegisterCodec = types.RegisterCodec // variable aliases - ModuleCdc = types.ModuleCdc DefaultMinMonikerLength = types.DefaultMinMonikerLength DefaultMaxMonikerLength = types.DefaultMaxMonikerLength DefaultRegEx = types.DefaultRegEx @@ -93,17 +92,18 @@ var ( URIRegEx = types.URIRegEx ProfileStorePrefix = types.ProfileStorePrefix DtagStorePrefix = types.DtagStorePrefix + ModuleCdc = types.ModuleCdc ) type ( - Keeper = keeper.Keeper - Profile = types.Profile - Profiles = types.Profiles - Pictures = types.Pictures - GenesisState = types.GenesisState Params = types.Params MonikerParams = types.MonikerParams DtagParams = types.DtagParams MsgSaveProfile = types.MsgSaveProfile MsgDeleteProfile = types.MsgDeleteProfile + Profile = types.Profile + Profiles = types.Profiles + Pictures = types.Pictures + GenesisState = types.GenesisState + Keeper = keeper.Keeper ) diff --git a/x/profiles/legacy/v0.8.0/migrate_test.go b/x/profiles/legacy/v0.8.0/migrate_test.go index 9aa5fdbc40..2abd7dcc02 100644 --- a/x/profiles/legacy/v0.8.0/migrate_test.go +++ b/x/profiles/legacy/v0.8.0/migrate_test.go @@ -1,6 +1,8 @@ package v080_test import ( + "encoding/json" + "io/ioutil" "strconv" "testing" "time" @@ -16,6 +18,43 @@ func newStrPtr(value string) *string { return &value } +func TestMigrate080(t *testing.T) { + config := sdk.GetConfig() + config.SetBech32PrefixForAccount("desmos", "desmos"+sdk.PrefixPublic) + config.Seal() + + content, err := ioutil.ReadFile("v060state.json") + require.NoError(t, err) + + var v060state v060.GenesisState + err = json.Unmarshal(content, &v060state) + require.NoError(t, err) + + genesisTime, err := time.Parse(time.RFC3339, "2020-01-01T15:00:00Z") + require.NoError(t, err) + + v080state := v080.Migrate(v060state, genesisTime) + + // make sure that all profiles are migrated + require.Equal(t, len(v080state.Profiles), len(v060state.Profiles)) + + // make sure that params are properly set + params := v080.Params{ + MonikerParams: v080.MonikerParams{ + MinMonikerLen: sdk.NewInt(2), + MaxMonikerLen: sdk.NewInt(1000), + }, + DtagParams: v080.DtagParams{ + RegEx: `^[A-Za-z0-9_]+$`, + MinDtagLen: sdk.NewInt(3), + MaxDtagLen: sdk.NewInt(30), + }, + MaxBioLen: sdk.NewInt(1000), + } + + require.Equal(t, params, v080state.Params) +} + func TestConvertProfiles(t *testing.T) { user1, err := sdk.AccAddressFromBech32("cosmos184ma3twcfjqef6k95ne8w2hk80x2kah7vcwy4a") require.NoError(t, err) diff --git a/x/profiles/legacy/v0.8.0/v060state.json b/x/profiles/legacy/v0.8.0/v060state.json new file mode 100644 index 0000000000..d55e3db369 --- /dev/null +++ b/x/profiles/legacy/v0.8.0/v060state.json @@ -0,0 +1,79424 @@ +{ + "app_hash": "", + "app_state": { + "auth": { + "accounts": [ + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 118, + "address": "desmos1qpg3hsvmlu8pz866tspn64nmat6sgrwa982q6m", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 1, + "address": "desmos1qrnfe2emyc5p8dvg3luaeta973lvdklk5auhk6", + "coins": [ + { + "amount": "990000000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 107, + "address": "desmos1q8df8fp3tpx6gxjlhsc0vzqaxet6wa2pmxrhzh", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2jtzwrnlhqv0666hdurl92le7rsxhzxy75fqprk4ttgmr49m9x9kj28p2q", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 117, + "address": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq233mee3e5llexmh8x4reppfuf2uuw20tav0knupm3guz7u3lcuh26cah0d", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 167, + "address": "desmos1qd6j5j8n9ugmpt2sdfkzzwpzcexyal79302ywl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 297, + "address": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq26ue20l94jn67djedrzdx4fxn3nyp4cg0ljn9h724z6ygpar9zw5r37ww8", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 29, + "address": "desmos1qjrty4rpwlrgupp2l075a4demz353mx8v96rvh", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 46, + "address": "desmos1q4dtkkale0awq8arg873qpkzj54hv7g7wk80qx", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 20, + "address": "desmos1qavm87uz055lk790eydtcxm4g20cnhc3pvym0m", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 28, + "address": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "coins": [ + { + "amount": "19988337", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqwecrtz48pcczj0efa74v30l6y25t6xr8ng566kd9yxe4l8s3ec7j2nmh50", + "sequence": 14 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 233, + "address": "desmos1pql9krde2ruwvjmay5yfy4cvgxaudp5g73k2ty", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 201, + "address": "desmos1pp9x6cppe8ykytk2ecvnup3pak56esh64ypyvd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqg0un6pkmkxqywzs5vnlym788ya8pgcl5xeucvvvwwlm2xhg573vvfgjz7s", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 285, + "address": "desmos1prwrsrrt83swq560h0czyrg3f2pusz9s3palx9", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 268, + "address": "desmos1p8353z7nmdl2332arylfxg6rly9ln2mp963su9", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdjawrf4k7nvq7ty63uexqc25tcm7aagpmpd7vn0fmnn60tm6ug728ee8rt", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 190, + "address": "desmos1pspyztfstf97lc8fm9g84avvq2hzsv5ypfujkx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 249, + "address": "desmos1p5dw0cw0rxskpda5asns9a8eg0zchr0lj80e2w", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 160, + "address": "desmos1pkukquayavsapulkywkx6gmnflg574qh48zcsh", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 49, + "address": "desmos1puh5url3u062vaeryw365jzzx8uuajdwjqrtyk", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 23, + "address": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "coins": [ + { + "amount": "29997592", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqvxmta86ynx0wpqrs6f3l246hccpdx6300var4vwk0v37vkegyxq56wp58n", + "sequence": 29 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 38, + "address": "desmos1patn4vz7dcvj7ae5t7jje0red4jrm66w0tku8d", + "coins": [ + { + "amount": "2000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 171, + "address": "desmos1zrwatjervd83kx4rwcecz4srf7mmensmxzchmv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 110, + "address": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2zwdvd8kfmytkc7ktsdhkza34cfccclscp82sxajd44t6k7fuv8u7mv59r", + "sequence": 17 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 53, + "address": "desmos1zy73ag9zde9u7apa49gtw9yud9llap4f55jn7q", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 70, + "address": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 125, + "address": "desmos1zfvn77dgpratn4v6nxw87d4l4xn8dd6uycjxwh", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 12, + "address": "desmos1z3dn3lj8sqm85jk65hc4nmug9uqjsfzypcqe5l", + "coins": [ + { + "amount": "1001", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 222, + "address": "desmos1z3sr49arwjltxuq9r5t4ykezphmjks3dnzucmf", + "coins": [ + { + "amount": "492272", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0p72wr02r5rasgege9prfzjcm4p0pachg5a2l99re9y77kpzglsj0agl7g", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 184, + "address": "desmos1znma6pnv2mw3etcsx38hncuseelwnhjzywunnj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 25, + "address": "desmos1zk3ms4n0x8h98axwm4tflkrnn4mmy8u28nnmfd", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 229, + "address": "desmos1zetvvc8rwkxh4jhh554esds9cwtxvm54l2w8su", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 99, + "address": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "coins": [ + { + "amount": "12495081", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdvwmhk5l692xlc8j3yravhhfr6jmjgg3qqwf5urtwtecltgm3zscnhdwdc", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 41, + "address": "desmos1rt0sdmma2mhcgq463s2m5myf5w2mcks3cr4xjn", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 270, + "address": "desmos1rw70l6kmzk0g9xw0kkgtsmwd9qx4lvj0rrl7d8", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 164, + "address": "desmos1rlf9h6zx8rwhz2nryljahkl3y9jh5u7sdp54gd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 98, + "address": "desmos1yqe66ky0v28wprdkxucdtehentypn3svyhfde5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 106, + "address": "desmos1yyf428wtf75skphxmf5pyadhrnjywq3c73wya0", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 146, + "address": "desmos1y9767dew8mk3g5gf2dvg86q6crqu0pwuec07nd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 79, + "address": "desmos1yfj36n3exmlxepsy9tyh04cf0ka0w6p5qcs30q", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 204, + "address": "desmos1y49afqzqwtw7w5wta6jwshdlfsxm52nc4zsgcn", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 56, + "address": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "coins": [ + { + "amount": "4000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwjhklftf29480yzv4qf9pyul535cqljyvypwkqnk0jpfnglusmssn6tvuy", + "sequence": 10 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 247, + "address": "desmos1yc7y360wxehk3zaulrkdxslzjnvuu9kdxsve5w", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 148, + "address": "desmos1ye7c390s57mve8puv7q3pv50va86he27p74lmj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 137, + "address": "desmos1y6afr4cfvrmf0ws076g7yh5vdxswej4ahcvdl8", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtsrtkwg2ttdfautyakc8fjadc4js3d74hdhee38vwdkgzthed57sh5asgn", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 145, + "address": "desmos19zctr7jlmdrj9hymw6633mnqlf4pw9uxqalmdw", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwxmd7kr9tzudtpe7q6lhmcyzm8g2332vepsnu4tze9sd67nns2wqu95kp5", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 245, + "address": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2kf8t85d88qfkta4hn4p6yzy2dpnqz6h2577ju04ceh37hvnqgjgc527qd", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 227, + "address": "desmos19s84exh39f3g32d0c5xj07vdptfrjn0lhxkknn", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 258, + "address": "desmos19scms3cq0572hcahf2jve7t7v28rnhkv4z389f", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 173, + "address": "desmos19nfvk5fu082rcss6emg0zsppy2ec9dkyea4f83", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 96, + "address": "desmos19c6gsqqjt0dgrkfnv50nxxv250jwcx8rx3ug25", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 170, + "address": "desmos19m7awuk988tkadyr4el9tn4vlt77w4wryrst6c", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqw3r34mxt22lzkd3a2e55hvy52h2d47rwhg5x8j7ycftf972g6cmxn2we5q", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 17, + "address": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "coins": [ + { + "amount": "17995862", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqgnkvgj4s2hfus6hm55tgx4wgntnhezwwx99pset5r5g85myd3rsxpr2rh5", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 192, + "address": "desmos197cmxuyr94uqy0r2vk47tu677ala8hn02pdt9l", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2n7fh6kpfujul3jp3ugz3kwkhyc7c2vwj6qm4rlp7r536nnvfwz2kn97h2", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 44, + "address": "desmos19lt9fwhrlmmkwjkpcmecxeen8lhag555xhfyg5", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 280, + "address": "desmos19lcvzq73s3fr9uwwwlu3qjsfsqjavqawss57ce", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0cjrwa4pgpwa8ppdmvtgj08nne0ra86z2kkzwq6u2apy3kxy3hnz8xhumj", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 101, + "address": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqvl3e9xasqk4cjnrn0w9ha5kxfzleu6n656u9cvc2zmvhykl9ak05wa307r", + "sequence": 83 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 206, + "address": "desmos1x8820w7ttkqn9q38p4l8fxzl57r2hyjf24xefw", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 75, + "address": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "coins": [], + "public_key": "desmospub1addwnpepqv5mtkdessth8fl66p0kqezfrzc5p6u98l5k9yrkfgd4fkg8vfduqaz5692", + "sequence": 16 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 103, + "address": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 14 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 271, + "address": "desmos1xvqfm3n8mvcn0u9zm9g69ffqj93ymds2dtsgqy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 200, + "address": "desmos1x05l6wahfuvqph0hkumpy9wlxyvpnhl98twsjm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 207, + "address": "desmos1xslhskzxpgcg8eq450mf3pfs3dcsvgvp63u83k", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 276, + "address": "desmos1x5x7ry4k2tm8twy9dfcm3sp570hg3zkllzw4z6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 290, + "address": "desmos1xc49kw9mqcclzz626wvyh3lut92pk4masuhtng", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 261, + "address": "desmos1xe5dz04ndq29dryuz0x2g70mrjmj0vas20qvda", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 150, + "address": "desmos1xmwc5xenhrpn7x0q2h9a7xzgn22lt5ytrhdpkf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 248, + "address": "desmos1x7s80gmc6ymdj67f25sgafyz6mgd7u2easxenx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 34, + "address": "desmos1xlkg00kqf37k0uspljg4pamjdt6yjkxdzvjpdu", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 84, + "address": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "coins": [ + { + "amount": "16897014", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqf703wva9rvp6s9rq55e3jq7nl5s7nu4yy7fusdd9gdsv4fh5rpyxtm36fl", + "sequence": 42 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 149, + "address": "desmos18rwvcky0jt88u7lw6tkv4jhh0jahh06p74duzp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2skaqj2ag2sy20f0kpwrn2wtsa9u9n9t3rlsay7ej2ktdp967mrzxgk6y4", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 68, + "address": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "coins": [ + { + "amount": "8774596", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgtxm50k2v3lmmzu4y5n38ra38zdh30mrxdvhupm8n4m9sejhe6gwkx0mrj", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 253, + "address": "desmos18jfhfuws0hwg827s4ukh9hw86mdugrjypj24zk", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 59, + "address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "coins": [ + { + "amount": "10001", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2cs2ygdmxcf9ztjz2r2daujqn46t3w0xt9waxd4senvt5wrf857wjp2jt3", + "sequence": 10 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 15, + "address": "desmos1gpx0595wkz8shxfnl8qj0m9xlqfdsslykuf3g3", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 87, + "address": "desmos1gravcjq3t98upzlf2rn74nzml5262ln4y2dlfh", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 302, + "address": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "coins": [ + { + "amount": "496076", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtq3nku6hf62vrafdefwy0h3gew5yke0s2qum6nxx8mvqkegt08njlmj0vf", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 202, + "address": "desmos1g35v6eu67t069e4vfrfhm23lv505fu35gdturp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 254, + "address": "desmos1g4kc5llwyq3y423fa0gcy64rz4h58e36k4lc8e", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqfwn2pc44mk5sjel6tsqaunsg8vude6u9uhmyjmyfgz8vre96t99kjczw0h", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 235, + "address": "desmos1gk3kewu5x2ljldzujm0xxsg3nwtqq4ps3ejzrn", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 183, + "address": "desmos1gee3llf5zs0ytln9lduc34m2lcnz5eqpq8wwl5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 11, + "address": "desmos1gmu4uevcvwfcuu43yp27gcv4ngxuh9sxfpv3er", + "coins": [ + { + "amount": "9990", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 262, + "address": "desmos1gattvm0n45ymk28t70xtnmtjyw6cgwr9pzxxfe", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 61, + "address": "desmos1g7mzep5lfempedgcfrytrausnt8d8w889muwmm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 128, + "address": "desmos1fqyt7zs5s65quung3y2amp5j8arkd9s6p6qxmz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 281, + "address": "desmos1fg43gttcm8l5c6jptn7stnjnnj0hl5xqc7p0fz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq26md9djw4qj08cqwgzhh95ledtueuxuy43mcaag6zu5p4r6w47wxnqxtqx", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 210, + "address": "desmos1f2mexglh3kta6k0n63cka4vw50vy0443jsczz2", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 244, + "address": "desmos1ftp2whf7jc7g455c55saxx09pche59yhvd5dct", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 92, + "address": "desmos1ft37z3kv89mtc2qzyudvmhkakeyje6kuwda29y", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 269, + "address": "desmos1fd2mdd4jk7hqjdh7sefsraq8shfj5gasdnvp6c", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 220, + "address": "desmos1f0wmy6srv7hy2p2236qk3g404y0p3k5kk2wag3", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 82, + "address": "desmos1fs39fdhkus69jskyv5s6xsk5wzrtyutpv67ma6", + "coins": [ + { + "amount": "7897020", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 153, + "address": "desmos1fjjvue580y7ux29hv8qg5kfkf5w26jzsh0gm2g", + "coins": [ + { + "amount": "900000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgrd4md8s8tzswu9kxw5p6mgg6zpvj7juewt9aqmr3dqycph92dzs5x6pf8", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 5, + "address": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "coins": [ + { + "amount": "2000000000000", + "denom": "udaric" + }, + { + "amount": "4", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepq0s4mtdke3j70mk6ytae86l8wvxcf2lyzzzjssmfs950wp7n5ppcxetrfqp", + "sequence": 138 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 259, + "address": "desmos1fe6f2894zkz5x2l9k2z57latts9l06puf5dnth", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 283, + "address": "desmos1fmvs85d0v7ym2sfmxwnsvmhs3pxc57frdqexqg", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/ModuleAccount", + "value": { + "account_number": 7, + "address": "desmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu3prylw0", + "coins": [ + { + "amount": "40642680463", + "denom": "udaric" + } + ], + "name": "bonded_tokens_pool", + "permissions": [ + "burner", + "staking" + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 266, + "address": "desmos12qrdk3d34j3p5wmjhmctwy4szwsknj5c0pkm7z", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 205, + "address": "desmos12pxw3f97k2sx9jl2rcr2ssr9q23k6lc295fnlv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 147, + "address": "desmos12rg8wz0ykvtgx459v5dn8d04g3ew79nevpz6tt", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 199, + "address": "desmos12xtz20lgfx572tn2g8yluaf89nx7kt9ru3t0sr", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 140, + "address": "desmos12v62d963xs2sqfugdtrg4a8myekvj3sf473cfv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 211, + "address": "desmos120jlm2525k89ya3w33djlmz673qgspw367rvue", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 157, + "address": "desmos12hy7z5w92xdzsw2ecyzl5gqsk9hxxnpxyzt8e6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 156, + "address": "desmos12uxt4lullu4w20j28h3kahyrdwz366nv042pps", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 295, + "address": "desmos12lqdev5pkrxgn6p3emvnm2ta026hkmfu3pwehd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/ModuleAccount", + "value": { + "account_number": 8, + "address": "desmos1tygms3xhhs3yv487phx3dw4a95jn7t7l4rcwcm", + "coins": [ + { + "amount": "177950020", + "denom": "udaric" + } + ], + "name": "not_bonded_tokens_pool", + "permissions": [ + "burner", + "staking" + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 102, + "address": "desmos1ty2qgrk0kvrtycmqcpngxt0af8hfwr6q8xfc6c", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 90, + "address": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "coins": [ + { + "amount": "42", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqv6u2t89mkmrxzyx9mfx6rc6fk3rxcwyf7kpayj49q7p2futdntl2ra68q7", + "sequence": 91 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 240, + "address": "desmos1t8qgy2pp4z4pp8yvsh7w82jkpvuq4k4sf8mxnr", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 81, + "address": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "coins": [ + { + "amount": "7997016", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 27, + "address": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepq26l4uvn65nkxkql085w2rg2tyudw99hjgjw6v5qxlcrac2e55a2u7srvpz", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 112, + "address": "desmos1tnwhmwda7r8xly9qg7hefcapyydsnsr46unqsq", + "coins": [ + { + "amount": "10999799", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtkql69aa9lfp8u9h93rrgqh6dhx9nkmh7jhnrxtael426sjcscpwy4w84j", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 89, + "address": "desmos1tk6322xz6w62xflfpqazgmp95df55k0j5mjxsc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 208, + "address": "desmos1tmk9q9zejvva3smw69szse6c68hshjlwyrdfc4", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 131, + "address": "desmos1t74p8wd0thcq6hcnczp9eezaudvrec60y8l4hm", + "coins": [ + { + "amount": "9897022", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 185, + "address": "desmos1vryq2u4zyyu8qzygw3jdy9wsm7y3nkz3u9ysxw", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 72, + "address": "desmos1v9q6q82aas3vknhngmeletvzhlhk5jqpy2t39a", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 251, + "address": "desmos1v5u2l78caeke3k0fpcs9l4gxxkx863ay4lpfd6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 226, + "address": "desmos1vhrxzycy6t4sjvfnewn2vjnusg0j6c2t8vsqvg", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 274, + "address": "desmos1vmze3xe0mr9swt2675kad6sdxz5qtnk7f9et0z", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 224, + "address": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqfnu8tgr8xqfyrml775jhzcxc6556p7s59sjelm7dfuwrxmq85p6xt5sjyu", + "sequence": 14 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 122, + "address": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqvgztcrxtt3fz368ycyzqxelme42rzs3wm4p43023dv7u2upr8rfvncweuj", + "sequence": 78 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 104, + "address": "desmos1var2mx84dzqjt8vvlycjadekexl2l2a39rx6ue", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 50, + "address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "coins": [ + { + "amount": "9999988", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqgmpgpgea72vdkqj5wt7xa3lzz9azhtlw2d9qadalyprlfhlucf0utk6wrz", + "sequence": 25 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 4, + "address": "desmos1dzn2s7l0wm9kekyazcnhapu8j95n90efmcmrad", + "coins": [ + { + "amount": "2096440000000", + "denom": "udaric" + }, + { + "amount": "79999899942995", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqv4c93kns3tx3cvq3lxdehe2fysql6s87lazv7qd4l2ut9t4vpga6zkp02k", + "sequence": 415 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 273, + "address": "desmos1ddrhe4lkak3ag3a3u56efmeumam48de67zjgr5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 304, + "address": "desmos1d4kmuml2m6254r2amhgd6p5xaqyy5fu0pcha72", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdqnsq4wlc5l4344l9wh5udzr5jmgddxyf2gc5fqy02hqhakp7ejgx8ed3s", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 139, + "address": "desmos1dmf80m0x2dzgf2fe642j2fjqy8palq3tfapvxa", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 194, + "address": "desmos1daqnr2hcugxsutpqyd24xu48090kh5gyjjjjun", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 108, + "address": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 63, + "address": "desmos1w8k4qyg395jkdf4lrrpkx47ncapvsszvhehdv5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 62, + "address": "desmos1w2yqy80jyxvkqe886l6rxkuaz27u8h8dk74hce", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 225, + "address": "desmos1w2ndtzm53uw8uzqdj6sf7kvje6wz6axlqwcvac", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 215, + "address": "desmos1wvucl65h5hu4fqlzmmw0ajstdz6p2m0hhlww44", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 143, + "address": "desmos1wsk63dkefrefxpq0k0fe27gx9lcz0gmg0pll7s", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0mus485zvswelsuy908za5gcg3mp09rsmhes99xes7wqw7udstmv97hlgj", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 241, + "address": "desmos1wn99nz4txccq4dugz76sg2rz7hfayahjqxc3mm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 187, + "address": "desmos1w4ng23sngez8ng3a0ee99cxgp3dtufk76udjqc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 284, + "address": "desmos1wc3m7490hl28sgl4pruu4s2jgjvlu9n4dhzf73", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwcaz62qtez9jck7gmuzrd6zsdpf4rtzzmsarezlje37j4da6wxfqhva84u", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 165, + "address": "desmos1weyktjnvw8dg2ng3kjqxz4dphchwz02xffulch", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 186, + "address": "desmos1wm638rlcz0ek9dvsxkkjtjd9xymwepvpt394h2", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 18, + "address": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "coins": [ + { + "amount": "2000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqdzk5tc6yvvhypwuzsxsyut02gdqn2vgdgq64d3ptuxrava59h3w70znexm", + "sequence": 8 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 109, + "address": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0aajqy5685fwqg8wz7s2kr0utlgfx9ctut7plc6w96fjadz3menqpjhvd0", + "sequence": 22 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 115, + "address": "desmos10gzach0ftnpfp7jazqvuhyxzdkjd5pnv5xuq5k", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 246, + "address": "desmos10j2hsltqutz8spuzrztk066lehjpaqvrwap6wz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 126, + "address": "desmos10nqm8rgd7cgqu3fy629z09qs4huhfln2wwr9kj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 2, + "address": "desmos105rr8u0mjqs9wntlmdgx4kskxqa9lv5k5wuaaz", + "coins": [ + { + "amount": "990000000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 168, + "address": "desmos10cshvvudqns5ukpeq4u6sl7x6r5npz3kz4m3s2", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 193, + "address": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "coins": [ + { + "amount": "2222223", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqt3wyyqtatm4uu7mfc7c803vwsz04m75v3vumsg6phsy9u3vkdphx2yahpx", + "sequence": 8 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 279, + "address": "desmos1spy5cd75xwlc3y7ddey6pavuwmn2tz57s78d07", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 236, + "address": "desmos1sg5qxyl8z2rqswst6xuw2vvptrk8mdjvsa8lcz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 133, + "address": "desmos1sfqflwwldc5jj40un5qgs926yqgxrup7u5wpxl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 239, + "address": "desmos1s2crr8ea3e8epfjnjq6yu8sagt7xz79xkwmg4x", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 198, + "address": "desmos1sv0t2z8nvjn4wrc02m8lcejvmnn8wwxsjdtr4f", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 212, + "address": "desmos1svjxha4pnx5grsqc4cfy7ycv54y4fle3vmxxwh", + "coins": [ + { + "amount": "18996066", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0r6ceq7a0eyk2puee92vem3y28s3r2vppsccqu6sp2p4kxvn8upqhc637u", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 24, + "address": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "coins": [ + { + "amount": "9956857", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqw4uv8x43mqrdw3tsu4np7kjv40kxfqymu247et2nqwjc2qhf4d6ysamkgr", + "sequence": 17 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 0, + "address": "desmos1snmetx9sfrmznr4z6d3lnwlyvwu36sgcpzzhlr", + "coins": [ + { + "amount": "890000000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 166, + "address": "desmos1sht43e32padfe5v4ewztf8up5ldh324mj7ta3j", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtnzu85fwaejmfgwn3q4d6qyhtr9yx74samjmwhvjgggpf224y0gwwxw75j", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 80, + "address": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "coins": [ + { + "amount": "1000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtly9gp6qgr63a58haw9d7822ycn4a0va9cmc2jvj4llxfrkqzkw546gt2x", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 255, + "address": "desmos1s7k6n697hsxwlncd6zv90kvgv7se7c4jpg03az", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 57, + "address": "desmos1397mvzsugyk8jakl2wehwysg96rfa6gv3chwuc", + "coins": [ + { + "amount": "11000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 121, + "address": "desmos13fndfmnd359up5r4qpdkgv8ewt8syjmxvmdha3", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 43, + "address": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "coins": [ + { + "amount": "996987", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 287, + "address": "desmos13v22hf6ly272p6pwz2a3tg30r67veghev2ung6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 195, + "address": "desmos130pugxlvua6u7ct6l7zk2pmt9mr7vsg44xapej", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 303, + "address": "desmos130euf9e3k4w826dgnyzx4aex3lupqee5kz5qgl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqd5380sqrw4y52468fhws5l9w68ccmfpvf5fq7huvllkk8p7mvukjmndmh9", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 237, + "address": "desmos13c0n4afksf74f9uxkkagwhwm2slky7kuy3qqnl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 260, + "address": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqg3qfxc0aa43rjlk3674mmtft8zjapdr6m2njaseffma4u64285qxuvtguq", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 203, + "address": "desmos1374y0xgxw9efuc52g9k2atc6quqhcq64s0sxrm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 123, + "address": "desmos1jqpqjcmqq0rq2dzgk6y9cljvx35jwqndkxr54z", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 16, + "address": "desmos1jz0hg7fvvs0024h0ac8e485xu6yryzhxhpvc0h", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 36, + "address": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 286, + "address": "desmos1jxsraq0pu8wdn293quckdg9auuzf5ewawfqnwp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 151, + "address": "desmos1jgkwvtg0mk8gcvays7gequu56wjm2e6xlg0v85", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqggu5safx0upze3h2vxw0hedlj4yqct7ldehuaryqf4nj7t0fgvc5f2m0jq", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 231, + "address": "desmos1jgedgsxyzwp82r5q8s44wnurtttwpcu67zz4h3", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/ModuleAccount", + "value": { + "account_number": 6, + "address": "desmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd8n8fv78", + "coins": [ + { + "amount": "431956", + "denom": "udaric" + } + ], + "name": "distribution", + "permissions": null, + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 242, + "address": "desmos1jd6ecxg8scrjknrx59z4wfk4azcgwqvak3vqu6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 159, + "address": "desmos1jw4rkfnxsykcw8wxa9k0u4g0r28xrttz0uey4r", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgrrezlful34zus7raajx3sdvzrm5uxc7f0v83fsnkctk289ps8nzlmpkw5", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 152, + "address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "coins": [ + { + "amount": "8995982", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqf8lfrqdt4hwh9lvn4xpq056rspamcm4suwgmvzts8hrw0wyxwucscf29j6", + "sequence": 10 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 292, + "address": "desmos1jaw0n623958u96sk9mncfu034wjdy86v200875", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 181, + "address": "desmos1jlaat3z62u2se3yakd8hrw6du3atp9uafjeaek", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 243, + "address": "desmos1nrjvd5asx600eph5ds7a3fjtq7lajp3xj0phna", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 76, + "address": "desmos1n9l3kaexp56pdcc8ttpw4sgy3j36w8acxay3g7", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 73, + "address": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "coins": [ + { + "amount": "10005167", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqfr8paglssr7j8s89je73xxkmc5wdrcnx4xp9ucrazsudvde94x9kkfnn4q", + "sequence": 22 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 299, + "address": "desmos1n2efj75wtxdtc2m6p6pjh33q8usudf0hps9eaz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 180, + "address": "desmos1n2m52yfq4hmk4e9p9493c28nt4fy4sqxvehxvf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2ntyfwgssj8cl88q7khlwxlulq38h30cwf8e0mlgz83akycuuzpcc0ueec", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 30, + "address": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "coins": [ + { + "amount": "8997498", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqwdageptdckcxeszxv0q9gp6t5zmzmc3x0kqg0rrvvge28clean2waujrme", + "sequence": 8 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 189, + "address": "desmos1njfhf0nxymykdccupyaph94xvah326vsn5j0ah", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 26, + "address": "desmos1nemxzd4x2djvm6vdt7w8l0ahy3fsr57pe65vxj", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 228, + "address": "desmos1nmjv37ddjcvu9t2st3f6zrjlp49w0945tstq3h", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 179, + "address": "desmos1nu88x7h22zghkwhnnglc2q0405rvq85tdrrfu5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 120, + "address": "desmos1n7n49hh5am5z0vl295glgj69f6vs76jvk6alvy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 119, + "address": "desmos1n74p7wa32l5rmhadssu6pucauw7k3af0je4mya", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 238, + "address": "desmos15rvcte5lpxdfrmafhr8fuu7lkuzpmjwr4327wv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 40, + "address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "coins": [ + { + "amount": "996984", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 116, + "address": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "coins": [ + { + "amount": "17123", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq27024uty4c73el2jhrsce4l0h7zt4wx0a4lq9nugy0rhuhjnqwpq5feul8", + "sequence": 22 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 176, + "address": "desmos152mk6fd3xhp2ks2rt3cp3smnc2jua93vuz0n60", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 263, + "address": "desmos15v4c0lzry83ttdqckus4pz6u3y66xv663j756x", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 272, + "address": "desmos15chpld9f6jpxm2y29f6mk3lgq6s25srg02xv5h", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 294, + "address": "desmos15uppa2theyy7467sq3edyr3yd7upg5juyths7v", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 138, + "address": "desmos15ux5mc98jlhsg30dzwwv06ftjs82uy4g3t99ru", + "coins": [ + { + "amount": "3996070", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0ecg279f4yc0k65yauffh6fnnvftklmgyr4nznrznm7apfucaw7zzjj8ja", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 69, + "address": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "coins": [ + { + "amount": "30000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwuk370w2g058c59sg0tfa35n7aexnl952nu56256nexa0frmjnucmw28uh", + "sequence": 82 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 291, + "address": "desmos14zyyrrjtl64f23u0e2fnt6d32wjg2kkntmzcj0", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 105, + "address": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgsqatkhx4na28jr2qe4cm9g4q2szgxjp9trpr3y9cxt33hzj54l7422uyn", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 161, + "address": "desmos14xec9tjsw4v5vzsx52dhrx7k873889pluymuzf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqww24schtz5jv973u3pml6m637mt3fhd4pmc6lt8gmwjs2yezgvlxj0trqx", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 32, + "address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "coins": [ + { + "amount": "996962", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqvnhwsgx97lm9vdcjuc6gvwpt2shdk9yn5lhg5lkzr4kq3cderz2cedqetq", + "sequence": 18 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 13, + "address": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "coins": [ + { + "amount": "7990000", + "denom": "udaric" + }, + { + "amount": "3010", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqv9zkuc9798hz5qfnjqpzm050y0s2ulhjjhlswa9nrjcgsh0ret9qslkckl", + "sequence": 77 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 71, + "address": "desmos14wtz9tuxu2ue7lmj3r8dvjajsvaryzttxr7dch", + "coins": [ + { + "amount": "18997020", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 154, + "address": "desmos14jhgygqh2nf8d2hqzp9pq7z7z7pu7expen3pvy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqvup503ju5r8yxj8x0tvfe3xdjy6wztszuujxlhgyfg52r8f6cfjutzk4sk", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 265, + "address": "desmos144ch7clf8yku6m2l69q936tq9c7l7nefgvrt4u", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 191, + "address": "desmos146kc07g39q8vzfv37hyecwpres07fczzsqxydz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 282, + "address": "desmos1kj95g6vqz2ww7hqlnp99lxa7rg8w7c54myrcmf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdsgdfmeyke80tuy0ug8zw7vgfq83qpjhknzm6a0gup6kpgded7tuf7w6ss", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 113, + "address": "desmos1k5wrdtmd5ngqx4pngwtlmlahv8yz7gk2lq4chs", + "coins": [ + { + "amount": "8989901", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtzqvhaja56fahcfct5pe3k0m3mj8kdangn6nra4l8g7ydsh7e5yx7ku2he", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 95, + "address": "desmos1kk5g3y82jf326p43d6gs9mup56y2evchnagmxw", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 162, + "address": "desmos1ke9fmwrs26putztkqhlve7dn2xjft6xf0acyq6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwzprm8jv2xq8fngllk5vv9jdxqn0udpxuaekhzjk5zz4makpkly2syftcc", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 221, + "address": "desmos1kayge86mzzerax3rqzcxpwvdjjg7h5emamy9r2", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 163, + "address": "desmos1hqw6qfrurvgtn9dnd8gxu992xuadc3u2e7y3e7", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 197, + "address": "desmos1hxrrlnyylk75qrjl34yxwfa8pruu6uj8j2pmtp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 132, + "address": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "coins": [ + { + "amount": "8997014", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 33, + "address": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "coins": [ + { + "amount": "9000000", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 5 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 144, + "address": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq2y2rlmera6h6murxeveay7wvwr2eh3rx8kz54vu0k7snmw8y7fkg9l52gl", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 31, + "address": "desmos1h5zlrr6wudctmyh35yras8yaj9xjhlqc62xzc4", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 22, + "address": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqw8pwmk2sty6tv25ujd2vuswl73les20z5c28g375le2vahq424g2qekgzr", + "sequence": 11 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 296, + "address": "desmos1h4xrzvurfawxpele6g8zuz7s4g3m4c8umehqex", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 223, + "address": "desmos1hkqrf9qjkm9wdewa4rzqdgt8zd7u43ztzz5gwx", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 134, + "address": "desmos1hcd2awl2xydfurs5y0d5pxr648lktr4lfs325r", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 130, + "address": "desmos1hm422rugs829rmvrge35dea05sce86z2qf0mrc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 177, + "address": "desmos1c8sget0d6zz7m7kl2mpnq4uv8erns8k5vhuku5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 93, + "address": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "coins": [ + { + "amount": "5997000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtfptp2rh9fwxq4c22fr9dysgvxlmdky888c683hk5kems3z4md25glev09", + "sequence": 12 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 97, + "address": "desmos1cf2y5687axm6pmrr9ferdt69znjpdfan0qjr0e", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 124, + "address": "desmos1ct8w7c9aah47mag3phrxt694kj4u54dllz3y35", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 58, + "address": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "coins": [], + "public_key": "desmospub1addwnpepq29nvsu3j4quwqdgrmp93trdt39jyz9mgaysxhphujtpu44evepw2rjjt0r", + "sequence": 23 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 214, + "address": "desmos1c3gfh2uf9y3hxra70tnpuy5g7jywgsmcn3x9cr", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 230, + "address": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0n5uj6p5fjv2v5ngruszs22c7ztd8699f0lvgclrgk9rdecevll5rpzsas", + "sequence": 11 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 250, + "address": "desmos1cc39tqqppr5cat4ytj5khychr9v3alpftpew7n", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 169, + "address": "desmos1cc53tdgtt9fu4tftck0wlz6th20kr8vqal2hxq", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 60, + "address": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "coins": [], + "public_key": "desmospub1addwnpepqf3cjvx47cfuxf60zvn64qewh8ml2trkn62upe6c9v06p8p5srjacjnt325", + "sequence": 60 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 135, + "address": "desmos1clskeeyaxxt3e64t0nl2pzypldex4hfd2yytdg", + "coins": [ + { + "amount": "10000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 45, + "address": "desmos1erh2eue5j88dpajapxmcyma88wxlh2rzgsa3c8", + "coins": [ + { + "amount": "2000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 100, + "address": "desmos1e8xaajgc0l5ftl5m5x390hg0enwjyd5pfyuf9g", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 300, + "address": "desmos1evev5xf7f83ft9ets9jgnkjayjr848tndp4edu", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 136, + "address": "desmos1e47r5lmctw07ywqqtxm35kurywwez7qdm4mlw4", + "coins": [ + { + "amount": "39996250", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqw0mrnzklq2hdh338jeek3sf32dq6zw2trazl2hqwk6raheumyrzjtdh4d6", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 37, + "address": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "coins": [ + { + "amount": "6050002", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqg5d9as5xamlpzr0eq9ytyzv7e3jszlay9aygylpcadctdtq6jfgsvwk59e", + "sequence": 21 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 277, + "address": "desmos1emmtdl0756p7sglkh39zy83akwwaat3t3ulmaz", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 267, + "address": "desmos1eu5p3pzy45xsj2gr4cu5gtvlet5w5654g6d4fy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 127, + "address": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "coins": [ + { + "amount": "894061", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 9 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 172, + "address": "desmos16zshhkxds72r2ye82dac3082xwyu484kq8cxvp", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 55, + "address": "desmos168yfpd2t8lvfxwu8lcu0ppuh3kl598g53xq7hk", + "coins": [ + { + "amount": "24976663", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwmup6ah0ncga6levv5wryekxdsyd8dc0ccdgtu4up0y3etdrd5nyd4ztsa", + "sequence": 15 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 54, + "address": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "coins": [ + { + "amount": "90000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqw7ljdh3ax5m30sphgts7mpznlvswq233x378d24aw99qp9j53nmwnhd3jh", + "sequence": 59 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 129, + "address": "desmos16t9r5jjqczc6xrr5hjahwsmu58e6ghfng58dau", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 21, + "address": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepq0wkzxl8rfvyffm6jxu85k90cf5dlxelnzgdda7xpsljmn7r079wj4n0zku", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 35, + "address": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "coins": [ + { + "amount": "18996981", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 77, + "address": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "coins": [], + "public_key": "desmospub1addwnpepqtchjd8phfp94sknydcxktahudjqeezzt9s75ms76lxsgtwcyk786tktnv6", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 19, + "address": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "coins": [ + { + "amount": "11000000", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqgefk2fznmr33w4v8yjsw8aa6epx2sjxafsvc9v2sl7xrmq70k7nkxzjjpf", + "sequence": 30 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 158, + "address": "desmos16w7cxqja5ll620stvf9e53xmzsxphhfymkp4xa", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 111, + "address": "desmos16narsgz9yhypm38unf48mp57y3z589d7zpcqwd", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 275, + "address": "desmos16h0smzzh8m0sa0f4jg8gqp46r49xtrxt2zwegn", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 74, + "address": "desmos16cn6zae2ededcrj050nrvcfjxt5sxv4c44jhqk", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 301, + "address": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgmjdkwhk9e9us89nv82cqgwf6gct8nze46t6h2g584dh46kwnyqxfm6xtl", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 78, + "address": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "coins": [], + "public_key": "desmospub1addwnpepqdk8m52ty6x00zj4549sx3j62r4zfzkhqap5ve0y23zkxy20wkhqgdrw7tx", + "sequence": 23 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 218, + "address": "desmos167u5f8pr7xvec5n6hgyef7vyx9wp4h7a7m7sak", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 85, + "address": "desmos16l0xmm8teec49rk7q6wmrg95jqrpj87y7at7rc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 288, + "address": "desmos1mqz08hcywap4572p5k4kujrhgqqykg9mr73cnc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 14, + "address": "desmos1mzwqlssv36gca9dfs4s837lnp7hcczqgswc60k", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 174, + "address": "desmos1mzkrxy5pg2aljmur3a0z87ns0fnnjwuvnf585f", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 83, + "address": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "coins": [ + { + "amount": "9997018", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 4 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 188, + "address": "desmos1mxm3vt0ujr0v3nsj0pqtvns3jzg7qv97myhdaj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 289, + "address": "desmos1ms5u9h6zqqgl2n7wsy22vm0vxcn5yknpulkx8g", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqva7xc0u02z0s4vr9e0jy2zfh4xme4j8chqpwlqcvf400krl2hunkj63nn7", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 155, + "address": "desmos1ms4wts4txwaulmf4am23sjrqxt5mg4ga3vpnv0", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 39, + "address": "desmos1mmxgfg9045sqxt08mnkhk6653cj90hsz23raec", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 141, + "address": "desmos1muhg6t3yu0utfgde8tsf99m9t0nu57cd9vvmjf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqd2fsjh30vhafuen4sa9xsd4p9yatv0xdca94ujxj48wvvrcmlnv6plm7mr", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 65, + "address": "desmos1up5dvafqg8whkf8e37z5yz47zd50fl3cpwj87u", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 264, + "address": "desmos1up724h2hkn5j6sfk38x0fmnyp2xnvjn9amsj0m", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 67, + "address": "desmos1u2g42tlzq9jtzldkpwpr2mxcvqaqj74eenvu25", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 3 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 232, + "address": "desmos1utj2amd80qgkunvm52pqdrcg4h2449jzrcugwl", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 293, + "address": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepq0ejyrw98djzxy7menxm225wn0hc0qfpffv08ys34lculkcey340jdemrvc", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 209, + "address": "desmos1u0am8z4qme59rsug9mh94ew34klk4epnq2c6nt", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 3, + "address": "desmos1uj9c9929scde78wu3u5r99wcavf2fzl7rdesmh", + "coins": [ + { + "amount": "990000000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 94, + "address": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "coins": [ + { + "amount": "3997010", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqgvwej6k52cfkwjug9wgu7utcz4tnthr6qr0jg9ec70l79z9p8vmu4x0nal", + "sequence": 15 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 213, + "address": "desmos1un5958a2ajvt08flhpkd8h67aan0mn67jysc4x", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqt2ee78wddhe2s474c5q0yp4dmzdr2h78avrg7ar0cvuaewya3pqs64xmnl", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 256, + "address": "desmos1u7cmy5tx2fn9lmdmphegmnqajedyz37s0mvxm5", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtuq7ppwyadtxean5ky35fxf2c6ayshs48a799vyskjctvv8pjgkkslszq9", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 178, + "address": "desmos1azdk7x5lc7yadhrm0esudj5snw3869y6q5u45v", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 51, + "address": "desmos1ar7ptckh355skxcwfl7zne8krnezp53kllyepl", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 182, + "address": "desmos1a6p3cyr046haxrtzy4c0ggxg0amslp9nge6ut5", + "coins": [ + { + "amount": "20000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 278, + "address": "desmos1a6zqa0xganxwpep8s70jul6ah7lwd4j0r68gxm", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 64, + "address": "desmos1amff90quajzsl4929t9dmqyplkqu5efmtcc6pc", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 114, + "address": "desmos1au7uulx9s3hm3r3qy9yw400stz5mleaulnmqff", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/ModuleAccount", + "value": { + "account_number": 9, + "address": "desmos17xpfvakm2amg962yls6f84z3kell8c5lypwsu9", + "coins": [], + "name": "fee_collector", + "permissions": null, + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 52, + "address": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "coins": [ + { + "amount": "496014", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepq0k5vmfydwsq7xe68kcqruj2mavc0lkleqz79fxwxuxp8y0tqnkyvcvqxqp", + "sequence": 7 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 219, + "address": "desmos172spgtvufdhfj036esqhgrr8tphx84uq6kqgt0", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 252, + "address": "desmos17d0kwpzr2zcdhcnmcmfujgx2dhqm0ujfua6pmv", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 196, + "address": "desmos17s436tx3dxmya0pdkhzqkmaqtn263d60vfkrys", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqdu6xnde4wuklmxa7r0ut93kjxtqj2pgasazqpjp60lnfrhg32jf5ke6dy2", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 48, + "address": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "coins": [ + { + "amount": "11000000", + "denom": "udaric" + }, + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "desmospub1addwnpepqw67jptm9wyt6hesp54eksrjcr32v0nupumjnpp6wgnq9qw8fkv2zwjm22z", + "sequence": 13 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 10, + "address": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "coins": [ + { + "amount": "100000000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 11 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 234, + "address": "desmos174gaplnhmndtvcyzhvnxm73vwahdgna02d6r3y", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 257, + "address": "desmos17hkt3lun0fhjyt0kxxvry27q7gj7tvnv4wf0j6", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 88, + "address": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "coins": [ + { + "amount": "8996990", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 66, + "address": "desmos177jmcjpa02ruc6m2lt82583lrnv8eck25msr3l", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 142, + "address": "desmos1lzlfh4z6qz6630g05ufz9u2psm7tvqdap6k7dy", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqwf8sy0pre33yz0as30ev9xz3p6qx6tleh2n2vftu3lx4ep9n00kyyvjxsr", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 298, + "address": "desmos1lrrv7x0mpkp66gl6542a9q760w8zav3rkq9c5r", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 217, + "address": "desmos1ly6r00a5qyg27ef02828f3emvrad2mne8yqudq", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 216, + "address": "desmos1l8hxmkg8j3ew0jqwvqc86zz3dzsczckvtjk495", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 0 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 86, + "address": "desmos1ljmud4fjt766cneaz2xverm8rdlej20fhn9ejf", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 175, + "address": "desmos1lcxt4h5rsa32ml5kctte80qcnqw9t9mft3v4se", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqtxe03swwhpxxqm729uda0nurrwtlnjx5hk87hkhwvgezuwken7c553eq4c", + "sequence": 1 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 91, + "address": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "coins": [ + { + "amount": "10000000", + "denom": "udaric" + } + ], + "public_key": "desmospub1addwnpepqf4gp96c5m905pheq80fny66fw0vuvuu4l3qhl5n9d78rswyk09f24hkd4k", + "sequence": 6 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 42, + "address": "desmos1l6ayl3wcvkpr5yn5a3tgqp3jv60quyxmrph2q0", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + }, + { + "type": "cosmos-sdk/Account", + "value": { + "account_number": 47, + "address": "desmos1lavlnqhpka46ndvljk9kgp5v9k979csqldtfsg", + "coins": [ + { + "amount": "1000", + "denom": "upotin" + } + ], + "public_key": "", + "sequence": 2 + } + } + ], + "params": { + "max_memo_characters": "256", + "sig_verify_cost_ed25519": "590", + "sig_verify_cost_secp256k1": "1000", + "tx_sig_limit": "7", + "tx_size_cost_per_byte": "10" + } + }, + "bank": { + "send_enabled": true + }, + "distribution": { + "delegator_starting_infos": [ + { + "delegator_address": "desmos1qrnfe2emyc5p8dvg3luaeta973lvdklk5auhk6", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000000.000000000000000000" + }, + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "delegator_address": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000.000000000000000000" + }, + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "delegator_address": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "starting_info": { + "creation_height": "678138", + "previous_period": "7", + "stake": "29710000.000000000000000000" + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "delegator_address": "desmos1z3sr49arwjltxuq9r5t4ykezphmjks3dnzucmf", + "starting_info": { + "creation_height": "646584", + "previous_period": "2", + "stake": "9496085.000000000000000000" + }, + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "delegator_address": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "17500000.000000000000000000" + }, + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "delegator_address": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "6000000.000000000000000000" + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "delegator_address": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "starting_info": { + "creation_height": "156764", + "previous_period": "3", + "stake": "1990000.000000000000000000" + }, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "delegator_address": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "starting_info": { + "creation_height": "0", + "previous_period": "6", + "stake": "49997040.000000000000000000" + }, + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "delegator_address": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "starting_info": { + "creation_height": "0", + "previous_period": "7", + "stake": "3050000.000000000000000000" + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "delegator_address": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "delegator_address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "10990000.000000000000000000" + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "delegator_address": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "starting_info": { + "creation_height": "81272", + "previous_period": "1", + "stake": "9500000.000000000000000000" + }, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "delegator_address": "desmos1fs39fdhkus69jskyv5s6xsk5wzrtyutpv67ma6", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "2100000.000000000000000000" + }, + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "delegator_address": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "starting_info": { + "creation_height": "138668", + "previous_period": "76", + "stake": "39987203.000000000000000000" + }, + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "delegator_address": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "2000010.000000000000000000" + }, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "delegator_address": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000.000000000000000000" + }, + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "delegator_address": "desmos1t74p8wd0thcq6hcnczp9eezaudvrec60y8l4hm", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "100000.000000000000000000" + }, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "delegator_address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "900000.000000000000000000" + }, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "delegator_address": "desmos105rr8u0mjqs9wntlmdgx4kskxqa9lv5k5wuaaz", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000000.000000000000000000" + }, + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "delegator_address": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "starting_info": { + "creation_height": "496198", + "previous_period": "1", + "stake": "7777777.000000000000000000" + }, + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "delegator_address": "desmos1svjxha4pnx5grsqc4cfy7ycv54y4fle3vmxxwh", + "starting_info": { + "creation_height": "582067", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "delegator_address": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "starting_info": { + "creation_height": "52445", + "previous_period": "7", + "stake": "19520008.000000000000000000" + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "delegator_address": "desmos1snmetx9sfrmznr4z6d3lnwlyvwu36sgcpzzhlr", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000000.000000000000000000" + }, + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "delegator_address": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "9000000.000000000000000000" + }, + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "delegator_address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "24000000.000000000000000000" + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "delegator_address": "desmos1397mvzsugyk8jakl2wehwysg96rfa6gv3chwuc", + "starting_info": { + "creation_height": "0", + "previous_period": "5", + "stake": "14000000.000000000000000000" + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "delegator_address": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "9000000.000000000000000000" + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "delegator_address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "18000000.000000000000000000" + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "delegator_address": "desmos1fjjvue580y7ux29hv8qg5kfkf5w26jzsh0gm2g", + "starting_info": { + "creation_height": "371064", + "previous_period": "5", + "stake": "19099999.999999999999999999" + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "delegator_address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "starting_info": { + "creation_height": "247523", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "delegator_address": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "starting_info": { + "creation_height": "0", + "previous_period": "6", + "stake": "19930000.000000000000000000" + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "delegator_address": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "delegator_address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "11000000.000000000000000000" + }, + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "delegator_address": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "starting_info": { + "creation_height": "74728", + "previous_period": "11", + "stake": "49900000.000000000000000000" + }, + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "delegator_address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "starting_info": { + "creation_height": "37863", + "previous_period": "2", + "stake": "20000000.000000000000000000" + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "delegator_address": "desmos15ux5mc98jlhsg30dzwwv06ftjs82uy4g3t99ru", + "starting_info": { + "creation_height": "68425", + "previous_period": "3", + "stake": "6000000.000000000000000000" + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "delegator_address": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "starting_info": { + "creation_height": "0", + "previous_period": "55", + "stake": "78917050.000000000000000000" + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "delegator_address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "5990000.000000000000000000" + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "delegator_address": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "starting_info": { + "creation_height": "818036", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "delegator_address": "desmos14wtz9tuxu2ue7lmj3r8dvjajsvaryzttxr7dch", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "delegator_address": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "delegator_address": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "delegator_address": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "10000000.000000000000000000" + }, + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "delegator_address": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "3990000.000000000000000000" + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "delegator_address": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "8987521.000000000000000000" + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "delegator_address": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "starting_info": { + "creation_height": "295238", + "previous_period": "55", + "stake": "19997563.000000000000000000" + }, + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "delegator_address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "starting_info": { + "creation_height": "370696", + "previous_period": "10", + "stake": "99.999999999999999999" + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "delegator_address": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "starting_info": { + "creation_height": "130811", + "previous_period": "9", + "stake": "113890000.000000000000000000" + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "delegator_address": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "10100000.000000000000000000" + }, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "delegator_address": "desmos168yfpd2t8lvfxwu8lcu0ppuh3kl598g53xq7hk", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "15000000.000000000000000000" + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "delegator_address": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "delegator_address": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "29997035.000000000000000000" + }, + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "delegator_address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "starting_info": { + "creation_height": "0", + "previous_period": "4", + "stake": "3000000.000000000000000000" + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "delegator_address": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "9000000.000000000000000000" + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "delegator_address": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "starting_info": { + "creation_height": "0", + "previous_period": "15", + "stake": "29997010.000000000000000000" + }, + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "delegator_address": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10.000000000000000000" + }, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "delegator_address": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "starting_info": { + "creation_height": "80539", + "previous_period": "3", + "stake": "29996071.000000000000000000" + }, + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "delegator_address": "desmos1uj9c9929scde78wu3u5r99wcavf2fzl7rdesmh", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "10000000000.000000000000000000" + }, + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "delegator_address": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "starting_info": { + "creation_height": "0", + "previous_period": "3", + "stake": "6000000.000000000000000000" + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "delegator_address": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "starting_info": { + "creation_height": "67656", + "previous_period": "1", + "stake": "9500000.000000000000000000" + }, + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "delegator_address": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "starting_info": { + "creation_height": "0", + "previous_period": "2", + "stake": "9000000.000000000000000000" + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "delegator_address": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "starting_info": { + "creation_height": "0", + "previous_period": "1", + "stake": "1000000.000000000000000000" + }, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "delegator_withdraw_infos": [], + "fee_pool": { + "community_pool": [ + { + "amount": "8679.469417296391864640", + "denom": "udaric" + } + ] + }, + "outstanding_rewards": [ + { + "outstanding_rewards": [ + { + "amount": "101994.115924909712911072", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "outstanding_rewards": [ + { + "amount": "89.902703810740898101", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "outstanding_rewards": [ + { + "amount": "15.365111856782241240", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "outstanding_rewards": [ + { + "amount": "6.562864577044823190", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "outstanding_rewards": [ + { + "amount": "130.463251336162156036", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "outstanding_rewards": [ + { + "amount": "47.151093185356539047", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "outstanding_rewards": [ + { + "amount": "113.433287059131003993", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "outstanding_rewards": [ + { + "amount": "4.796302168365140660", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "outstanding_rewards": [ + { + "amount": "9.408804319662877981", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "outstanding_rewards": [ + { + "amount": "1.109399006866182354", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "outstanding_rewards": [ + { + "amount": "1.252798459192403804", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "outstanding_rewards": [ + { + "amount": "0.279148470689626547", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "outstanding_rewards": [ + { + "amount": "88.295150953593055134", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "outstanding_rewards": [ + { + "amount": "102929.967854837695235369", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "outstanding_rewards": [ + { + "amount": "7.612515619650369271", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "outstanding_rewards": [ + { + "amount": "0.267853803339512736", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "outstanding_rewards": [ + { + "amount": "20.110602198843662927", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "outstanding_rewards": [ + { + "amount": "102288.985761336446412166", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "outstanding_rewards": [ + { + "amount": "78.210822723003256756", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "outstanding_rewards": [ + { + "amount": "352.111576274115630659", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "outstanding_rewards": [ + { + "amount": "10.582675616852049971", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "outstanding_rewards": [ + { + "amount": "103.386761807131855054", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "outstanding_rewards": [ + { + "amount": "140.039008627399498505", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "outstanding_rewards": [ + { + "amount": "8.990270381073857610", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "outstanding_rewards": [ + { + "amount": "3.550915397492942931", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "outstanding_rewards": [ + { + "amount": "5.285876373503512070", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "outstanding_rewards": [ + { + "amount": "164.689022063976253980", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "outstanding_rewards": [ + { + "amount": "575.914131162941796882", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "outstanding_rewards": [ + { + "amount": "0.689558124425968633", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "outstanding_rewards": [ + { + "amount": "0.729207175227187838", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "outstanding_rewards": [ + { + "amount": "86.671057191790845269", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "outstanding_rewards": [ + { + "amount": "23.777000680628243720", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "outstanding_rewards": [ + { + "amount": "59.932296159307569887", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "outstanding_rewards": [ + { + "amount": "118.976808775546665072", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "outstanding_rewards": [ + { + "amount": "1008.091695985025337598", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "outstanding_rewards": [ + { + "amount": "125.513662883828665510", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "outstanding_rewards": [ + { + "amount": "1.996547142568911387", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "outstanding_rewards": [ + { + "amount": "217.524609634862603747", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "outstanding_rewards": [ + { + "amount": "3.285865877059279259", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "outstanding_rewards": [ + { + "amount": "199.720660041274564764", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "outstanding_rewards": [ + { + "amount": "2.615403907029462120", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "outstanding_rewards": [ + { + "amount": "112121.774048910964709972", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "outstanding_rewards": [ + { + "amount": "38.597272957652395656", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "outstanding_rewards": [ + { + "amount": "0.808843020276657310", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "outstanding_rewards": [ + { + "amount": "73.984555899373361572", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "outstanding_rewards": null, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "params": { + "base_proposer_reward": "0.010000000000000000", + "bonus_proposer_reward": "0.040000000000000000", + "community_tax": "0.020000000000000000", + "withdraw_addr_enabled": true + }, + "previous_proposer": "desmosvalcons1k6wks6q2gr467n8te3v76k4paf9xylhrq3rgzm", + "validator_accumulated_commissions": [ + { + "accumulated": [ + { + "amount": "10199.411592490971291106", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "accumulated": [ + { + "amount": "8.990270381074089812", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "accumulated": [ + { + "amount": "12.981672174984810130", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "accumulated": [ + { + "amount": "0.656286457704482319", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "accumulated": [ + { + "amount": "13.046325133616215602", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "accumulated": [ + { + "amount": "4.715109318535653898", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "accumulated": [ + { + "amount": "57.106161872711145094", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "accumulated": [ + { + "amount": "0.504564461803214066", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "accumulated": [ + { + "amount": "0.940880431966287799", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "accumulated": [ + { + "amount": "0.296025990688718239", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "accumulated": [ + { + "amount": "0.125279845919240380", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "accumulated": [ + { + "amount": "0.279148470522901421", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "accumulated": [ + { + "amount": "8.829515095359305513", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "accumulated": [ + { + "amount": "10292.996785483769523535", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "accumulated": [ + { + "amount": "0.890664327499093207", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "accumulated": [ + { + "amount": "0.026785380333951273", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "accumulated": [ + { + "amount": "15.467320011469931080", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "accumulated": [ + { + "amount": "10228.898576133644641214", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "accumulated": [ + { + "amount": "15.642164544600651349", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "accumulated": [ + { + "amount": "35.274314781575581501", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "accumulated": [ + { + "amount": "1.058267561685204996", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "accumulated": [ + { + "amount": "10.338676180713185505", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "accumulated": [ + { + "amount": "14.678206635638635855", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "accumulated": [ + { + "amount": "0.899027038107385762", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "accumulated": [ + { + "amount": "0.355091539749294293", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "accumulated": [ + { + "amount": "1.322545574119125810", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "accumulated": [ + { + "amount": "16.468927038126125397", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "accumulated": [ + { + "amount": "57.911616114019479801", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "accumulated": [ + { + "amount": "0.068955812442596863", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "accumulated": [ + { + "amount": "0.072920717522718783", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "accumulated": [ + { + "amount": "86.671057191790845269", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "accumulated": [ + { + "amount": "2.377700068062824369", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "accumulated": [ + { + "amount": "6.159784302945956995", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "accumulated": [ + { + "amount": "11.984839273727533333", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "accumulated": [ + { + "amount": "101.102340050975457763", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "accumulated": [ + { + "amount": "62.756831441914332764", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "accumulated": [ + { + "amount": "0.199654714256891138", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "accumulated": [ + { + "amount": "22.599254155525946968", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "accumulated": [ + { + "amount": "0.262869270164742341", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "accumulated": [ + { + "amount": "179.764006357004587160", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "accumulated": [ + { + "amount": "0.269759148226246212", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "accumulated": [ + { + "amount": "11212.177404891096470995", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "accumulated": [ + { + "amount": "3.859727295765239566", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "accumulated": [ + { + "amount": "0.080884302027665731", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "accumulated": [ + { + "amount": "7.398455589937336157", + "denom": "udaric" + } + ], + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "accumulated": null, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "validator_current_rewards": [ + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "91794.704332418741619966", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "rewards": { + "period": "13", + "rewards": null + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "rewards": { + "period": "3", + "rewards": [ + { + "amount": "5.906578119340340871", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "117.416926202545940434", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "rewards": { + "period": "4", + "rewards": null + }, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "rewards": { + "period": "8", + "rewards": [ + { + "amount": "26.643804668776356486", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "rewards": { + "period": "19", + "rewards": [ + { + "amount": "1.157160154867609611", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "8.467923887696590182", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "rewards": { + "period": "7", + "rewards": null + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "rewards": { + "period": "2", + "rewards": null + }, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "rewards": { + "period": "4", + "rewards": null + }, + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "rewards": { + "period": "77", + "rewards": null + }, + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "rewards": { + "period": "4", + "rewards": null + }, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "79.465635858233749621", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "rewards": { + "period": "2", + "rewards": null + }, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "92636.971069353925711834", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "6.721851292151276064", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "rewards": { + "period": "8", + "rewards": [ + { + "amount": "4.643282187347217383", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "92060.087185202801770952", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "rewards": { + "period": "3", + "rewards": [ + { + "amount": "62.568658178402605407", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "rewards": { + "period": "7", + "rewards": [ + { + "amount": "244.152888715207773091", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "rewards": { + "period": "7", + "rewards": null + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "rewards": { + "period": "8", + "rewards": null + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "rewards": { + "period": "12", + "rewards": [ + { + "amount": "3.963330799355628121", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "rewards": { + "period": "58", + "rewards": [ + { + "amount": "483.519617404512709471", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "rewards": { + "period": "7", + "rewards": null + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "0.656286457704469055", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "rewards": { + "period": "5", + "rewards": [ + { + "amount": "21.399300612565419351", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "rewards": { + "period": "5", + "rewards": [ + { + "amount": "5.250291661635865389", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "rewards": { + "period": "56", + "rewards": [ + { + "amount": "106.991969501672202855", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "rewards": { + "period": "16", + "rewards": null + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "rewards": { + "period": "4", + "rewards": null + }, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "rewards": { + "period": "6", + "rewards": [ + { + "amount": "4.500067268929620715", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "rewards": { + "period": "6", + "rewards": [ + { + "amount": "28.383808238982154657", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "rewards": { + "period": "7", + "rewards": null + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "rewards": { + "period": "17", + "rewards": [ + { + "amount": "1.588129026434867365", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "rewards": { + "period": "2", + "rewards": null + }, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "rewards": { + "period": "4", + "rewards": [ + { + "amount": "2.345644758802309851", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "100909.596644019868238977", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "rewards": { + "period": "6", + "rewards": [ + { + "amount": "32.989968058156733207", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "rewards": { + "period": "2", + "rewards": [ + { + "amount": "0.727958718248991579", + "denom": "udaric" + } + ] + }, + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "rewards": { + "period": "5", + "rewards": null + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "rewards": { + "period": "3", + "rewards": null + }, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "validator_historical_rewards": [ + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000008091243342966", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000771346355328", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001922141814452", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007057006985361", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007057006985361", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "8", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007057006985361", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "9", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007138021250547", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "10", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007138021250547", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "11", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007138021250547", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "12", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007138021250547", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000002185789795795", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007122026343277", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000527884195803", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001121585753287", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000249342449667", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000249342449667", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000249342449667", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000249342449667", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "8", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000251383653367", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "9", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000251383653367", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "10", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000402318534380", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "11", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000444612521407", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "12", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000444612521407", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "13", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000571106739747", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "14", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "15", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "16", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "17", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "18", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001320527834237", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001850860900021", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001850860900021", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001850860900021", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001850860900021", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001926243014587", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000536913625368", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "period": "76", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000006968557500871", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000241068423005", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000865152208314", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001667439590221", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007245598184295", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007245598184295", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000051824620300", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000051824620300", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001964571272334", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000186679236846", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000477208678459", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000004631562251190", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001125701871724", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001125719298889", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "period": "7", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007415774592002", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000008091243342966", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000290529441613", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000384080670052", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "period": "11", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000006768039270477", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000000248317285", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000005700830189598", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000350576849333", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "19", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000895780206965", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "20", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000895780206965", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "50", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001181858081006", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "55", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001303282018862", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "56", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001303282018862", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "57", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001744595040588", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000104478503700", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001665546870152", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001665546870152", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007064390466147", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "period": "55", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000002757640938405", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000475550112625", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000637158820761", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000637158820761", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "8", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001183749004006", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "9", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001183749004006", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "10", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000004373208816726", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "11", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000008989252562312", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "12", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000008989252562312", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "13", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000009070968906627", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "14", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000009151465289268", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "15", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000009151465289268", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001073583667265", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000003988089393243", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000001796892428312", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000882352426707", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000006434286050824", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000064759400069", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000191638094963", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "period": "6", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000268878639368", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "period": "15", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000026499398105", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "period": "16", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000638844583768", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000082187575233", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "period": "5", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000000294204983793", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "period": "3", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000002185789795795", + "denom": "udaric" + } + ], + "reference_count": 1 + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "period": "4", + "rewards": { + "cumulative_reward_ratio": [ + { + "amount": "0.000007451108779776", + "denom": "udaric" + } + ], + "reference_count": 2 + }, + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "period": "1", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 1 + }, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + }, + { + "period": "2", + "rewards": { + "cumulative_reward_ratio": null, + "reference_count": 2 + }, + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "validator_slash_events": [ + { + "height": "74578", + "period": "2", + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "68800", + "period": "4", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009009009009009010", + "validator_period": "4" + } + }, + { + "height": "79013", + "period": "9", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009857239972807614", + "validator_period": "9" + } + }, + { + "height": "89815", + "period": "10", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009955372468245795", + "validator_period": "10" + } + }, + { + "height": "163458", + "period": "11", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009708737864077670", + "validator_period": "11" + } + }, + { + "height": "177109", + "period": "12", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009803921568627451", + "validator_period": "12" + } + }, + { + "height": "236425", + "period": "2", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "501320", + "period": "6", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009547738693467337", + "validator_period": "6" + } + }, + { + "height": "704146", + "period": "8", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "validator_slash_event": { + "fraction": "0.009761023224503535", + "validator_period": "8" + } + }, + { + "height": "31437", + "period": "3", + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "3" + } + }, + { + "height": "31437", + "period": "4", + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p", + "validator_slash_event": { + "fraction": "0.008417508417508418", + "validator_period": "4" + } + }, + { + "height": "52427", + "period": "2", + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "362290", + "period": "7", + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf", + "validator_slash_event": { + "fraction": "0.009800580194347506", + "validator_period": "7" + } + }, + { + "height": "260327", + "period": "2", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "336458", + "period": "5", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.009569377990430623", + "validator_period": "5" + } + }, + { + "height": "337513", + "period": "6", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.009661835748792271", + "validator_period": "6" + } + }, + { + "height": "351733", + "period": "8", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.009836065573770492", + "validator_period": "8" + } + }, + { + "height": "386028", + "period": "9", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.009933774834437087", + "validator_period": "9" + } + }, + { + "height": "391337", + "period": "14", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006872852233676976", + "validator_period": "14" + } + }, + { + "height": "410149", + "period": "15", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006920415224913495", + "validator_period": "15" + } + }, + { + "height": "447477", + "period": "10", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006688963210702342", + "validator_period": "10" + } + }, + { + "height": "450617", + "period": "16", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006968641114982579", + "validator_period": "16" + } + }, + { + "height": "460915", + "period": "11", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006734006734006735", + "validator_period": "11" + } + }, + { + "height": "463871", + "period": "12", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006779661016949153", + "validator_period": "12" + } + }, + { + "height": "547861", + "period": "17", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.007017543859649123", + "validator_period": "17" + } + }, + { + "height": "619604", + "period": "18", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.007067137809187280", + "validator_period": "18" + } + }, + { + "height": "622769", + "period": "13", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "validator_slash_event": { + "fraction": "0.006825938566552902", + "validator_period": "13" + } + }, + { + "height": "47953", + "period": "6", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "validator_slash_event": { + "fraction": "0.009267840593141798", + "validator_period": "6" + } + }, + { + "height": "577857", + "period": "2", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "673305", + "period": "4", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "validator_slash_event": { + "fraction": "0.009099181073703367", + "validator_period": "4" + } + }, + { + "height": "673962", + "period": "5", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "validator_slash_event": { + "fraction": "0.009182736455463729", + "validator_period": "5" + } + }, + { + "height": "349033", + "period": "3", + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg", + "validator_slash_event": { + "fraction": "0.009523809523809524", + "validator_period": "3" + } + }, + { + "height": "253534", + "period": "2", + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "184052", + "period": "3", + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783", + "validator_slash_event": { + "fraction": "0.009999950000249999", + "validator_period": "3" + } + }, + { + "height": "31272", + "period": "2", + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "747326", + "period": "2", + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "45671", + "period": "5", + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "validator_slash_event": { + "fraction": "0.009547734855181968", + "validator_period": "5" + } + }, + { + "height": "45671", + "period": "6", + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "validator_slash_event": { + "fraction": "0.009639772850421979", + "validator_period": "6" + } + }, + { + "height": "228481", + "period": "2", + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "656127", + "period": "6", + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "6" + } + }, + { + "height": "518947", + "period": "4", + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "4" + } + }, + { + "height": "248244", + "period": "2", + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "530346", + "period": "6", + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2", + "validator_slash_event": { + "fraction": "0.009955201592832255", + "validator_period": "6" + } + }, + { + "height": "107743", + "period": "2", + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "108363", + "period": "7", + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983", + "validator_slash_event": { + "fraction": "0.009533366783743101", + "validator_period": "7" + } + }, + { + "height": "694635", + "period": "4", + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983", + "validator_slash_event": { + "fraction": "0.008347245409015026", + "validator_period": "4" + } + }, + { + "height": "74609", + "period": "2", + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "518941", + "period": "4", + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "4" + } + }, + { + "height": "661534", + "period": "2", + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "697119", + "period": "4", + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "4" + } + }, + { + "height": "203296", + "period": "2", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "218069", + "period": "57", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009982460305322508", + "validator_period": "57" + } + }, + { + "height": "358367", + "period": "19", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009670849308992807", + "validator_period": "19" + } + }, + { + "height": "366409", + "period": "20", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009765287937091342", + "validator_period": "20" + } + }, + { + "height": "452794", + "period": "50", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009917617990559035", + "validator_period": "50" + } + }, + { + "height": "604516", + "period": "56", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "validator_slash_event": { + "fraction": "0.009883795707011350", + "validator_period": "56" + } + }, + { + "height": "123125", + "period": "2", + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "124612", + "period": "5", + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr", + "validator_slash_event": { + "fraction": "0.008347245409015026", + "validator_period": "5" + } + }, + { + "height": "166515", + "period": "6", + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr", + "validator_slash_event": { + "fraction": "0.008417508417508418", + "validator_period": "6" + } + }, + { + "height": "99866", + "period": "2", + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "657471", + "period": "2", + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "69292", + "period": "2", + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "390788", + "period": "2", + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "391156", + "period": "4", + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt", + "validator_slash_event": { + "fraction": "0.007518796992481204", + "validator_period": "4" + } + }, + { + "height": "549132", + "period": "2", + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "692519", + "period": "4", + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0", + "validator_slash_event": { + "fraction": "0.008901230940100168", + "validator_period": "4" + } + }, + { + "height": "80132", + "period": "8", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.007653061224489796", + "validator_period": "8" + } + }, + { + "height": "80132", + "period": "13", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009942663971099991", + "validator_period": "13" + } + }, + { + "height": "89814", + "period": "14", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009952040213480310", + "validator_period": "14" + } + }, + { + "height": "163457", + "period": "15", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009960696371473663", + "validator_period": "15" + } + }, + { + "height": "236425", + "period": "2", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "358814", + "period": "4", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.005154639175257732", + "validator_period": "4" + } + }, + { + "height": "420758", + "period": "5", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.005181347150259068", + "validator_period": "5" + } + }, + { + "height": "501321", + "period": "11", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009921845709152947", + "validator_period": "11" + } + }, + { + "height": "811453", + "period": "12", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "validator_slash_event": { + "fraction": "0.009932591404228979", + "validator_period": "12" + } + }, + { + "height": "578906", + "period": "3", + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m", + "validator_slash_event": { + "fraction": "0.009900990099009901", + "validator_period": "3" + } + }, + { + "height": "19779", + "period": "2", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "19992", + "period": "3", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "validator_slash_event": { + "fraction": "0.009427609427609428", + "validator_period": "3" + } + }, + { + "height": "20399", + "period": "4", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "validator_slash_event": { + "fraction": "0.009517335146159076", + "validator_period": "4" + } + }, + { + "height": "448774", + "period": "5", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "validator_slash_event": { + "fraction": "0.009608785175017159", + "validator_period": "5" + } + }, + { + "height": "244646", + "period": "2", + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + }, + { + "height": "539056", + "period": "5", + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0", + "validator_slash_event": { + "fraction": "0.009667622149989158", + "validator_period": "5" + } + }, + { + "height": "122020", + "period": "6", + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw", + "validator_slash_event": { + "fraction": "0.009259259259259260", + "validator_period": "6" + } + }, + { + "height": "195764", + "period": "5", + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "5" + } + }, + { + "height": "588924", + "period": "16", + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl", + "validator_slash_event": { + "fraction": "0.009667630207143979", + "validator_period": "16" + } + }, + { + "height": "398591", + "period": "4", + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "4" + } + }, + { + "height": "596665", + "period": "5", + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg", + "validator_slash_event": { + "fraction": "0.008417508417508418", + "validator_period": "5" + } + }, + { + "height": "35790", + "period": "3", + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "3" + } + }, + { + "height": "35790", + "period": "4", + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw", + "validator_slash_event": { + "fraction": "0.008978675645342313", + "validator_period": "4" + } + }, + { + "height": "241517", + "period": "2", + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5", + "validator_slash_event": { + "fraction": "0.010000000000000000", + "validator_period": "2" + } + } + ] + }, + "genutil": { + "gentxs": [] + }, + "magpie": { + "default_session_length": "2400", + "sessions": [] + }, + "posts": { + "post_reactions": { + "00727e9704aceb6e10102366dcdeeaf94d063c4588cb774ba6d37a40e619b258": [ + { + "owner": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "value": ":dizzy:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":dizzy:" + } + ], + "00f7cf78bb3e31d72605e186bcdfd11d2d0195566dbeec61d5fe59aaa5eb3f75": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":dragon:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + } + ], + "033080f107d68155e20228c4709385167cb0dfa19c0643d46758b2690dbafba0": [ + { + "owner": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "value": ":heart:" + }, + { + "owner": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "value": ":+1:" + } + ], + "040b010cd0dda604dc047a8a9c7ba0b3e4198f64cf93ba24fdb783c0bc645fac": [ + { + "owner": "desmos1cf2y5687axm6pmrr9ferdt69znjpdfan0qjr0e", + "value": ":heart:" + } + ], + "044a81561f1737ce018b1741b88aba6eb8fe383a2514abac950fd46c55b8da97": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "067bdc9ae7c2944fe7b36d119c16abb195e4c7bb1b62e1afe495d2c5fff98f84": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":sweat_smile:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":money-mouth_face:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":star-struck:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "07571c002e232135526847f20f3bf817b1129c1132572b47fbd44116814d6e7d": [ + { + "owner": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "value": ":heart:" + } + ], + "093a6057e15d3990d8cc769fbcab978ee997ac3330f709f0b37cd3a88b0d4046": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":laughing:" + } + ], + "09e8767f04f1983b05ee56dadd739e6787b2a84e8d7493106d067bb04b0bbd3c": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + }, + { + "owner": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "value": ":star-struck:" + }, + { + "owner": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + } + ], + "09e8d0e8e36b109860d6e6214e51f0d1b68af627e8f39ca4811db194207f7216": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "09f9cc17d6a7c534dacea4f9bc188d54d20d86159e08a266bf4d6aa99881a777": [ + { + "owner": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "value": ":heart:" + }, + { + "owner": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "value": ":smiley:" + } + ], + "0adee0963051bf6631a3f98fe55042c8e0eba1fd2168be6497484546d432c951": [ + { + "owner": "desmos1u2g42tlzq9jtzldkpwpr2mxcvqaqj74eenvu25", + "value": ":+1:" + } + ], + "0af5b98efda9ffebe78035e7882d2797dab52f8c5140e7d8d9c4c8943882c28f": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":star-struck:" + } + ], + "0b6ec64aab1bf4ca15e3873eef417e82f32ee5c5b22532752d9e2a328f1b5446": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":muscle:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":muscle:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":muscle:" + } + ], + "0ba5017c85961e62b8b936f60f52277b4417838254153aad3b0cc29937a6b50f": [ + { + "owner": "desmos1ar7ptckh355skxcwfl7zne8krnezp53kllyepl", + "value": ":+1:" + } + ], + "0f4b0ffe25896f08fc221e79ab4c7b9490fdff32a0d3894e20bb7f417117484b": [ + { + "owner": "desmos1zk3ms4n0x8h98axwm4tflkrnn4mmy8u28nnmfd", + "value": ":heart:" + } + ], + "1135e97293cc3afb47cf7b6bb20868b34ab5a3fa5573a15f7f3d19f8d593c220": [ + { + "owner": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "value": ":heart:" + } + ], + "11b491a237c7f1555291f8eeb1b67abc7f8b0c12793f18e3c5cbc321b89b6ea2": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":innocent:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":sweat_smile:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":sweat_smile:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":innocent:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":innocent:" + } + ], + "11cee369888628b5fb8b21b68b37a4ce634c7061522c4cf0475ba4d09d2efaa5": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":joy:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":joy:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":joy:" + } + ], + "12bba6721738efdacd376ba556f56b660814c8cb37ab80a3265e8ba079c061c3": [ + { + "owner": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "value": ":+1:" + } + ], + "13ba624c0ad6ffea3d3d492b4c68e3d8f3643ad097fe8a5ae92d63e1d42f7d22": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":star-struck:" + }, + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":star-struck:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":star-struck:" + }, + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":grin:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":grin:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":star-struck:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":heart_eyes:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":smiley:" + } + ], + "141e5bea03a282ecf97b9832b56d05cae252c8e57fec76dc62108d23a4cda652": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":smiley:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart:" + } + ], + "15cb5942ad200fe3530b8a9ff2f6ab6a5eb60164db98844919a6599bed7bf402": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "172fb00864632bb4dcae5285a5a0dc88694e481655ff7a3ce7f302f20daf6af1": [ + { + "owner": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1w2yqy80jyxvkqe886l6rxkuaz27u8h8dk74hce", + "value": ":+1:" + } + ], + "181589070d27efc79b9de090cc69f0b2e0586dd409589d635c03b89f6156966d": [ + { + "owner": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "value": ":slightly_smiling_face:" + } + ], + "189ff858bf24feaadb331dca4a185c3332e3f931a148dd1683eac871cb15ed34": [ + { + "owner": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "value": ":woman_raising_hand:" + } + ], + "19112db27ae54716a0d6538e2fef371d018e421ec7a715b438352657c721aeaa": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "1a0d2ecca7fa33ca2f23dbdcd358fcb8d31911eb436a058d374f94b592f5779c": [ + { + "owner": "desmos19lt9fwhrlmmkwjkpcmecxeen8lhag555xhfyg5", + "value": ":heart:" + } + ], + "1ded52064ac9537db836dbc288b7cd95851356d4a87b05162aa0483451b864b1": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":blush:" + }, + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":blush:" + } + ], + "1df8229ada2aeb6f31de5ad9d99d346fab6e1ca6467b0dd7218db33ca6590889": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "2127c22bf7b9ef01aa816f17e4c52a03e3091c2ea2e8650e2c112ba137c9f1a8": [ + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "24a740ac41e92e812470781d3f74f4819c035e58bcbc8e385c353902774a7554": [ + { + "owner": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "value": ":heart:" + } + ], + "264bdedcb20c712b07f6abb7e81408ba3d08967452164347e46afdbb81f8a722": [ + { + "owner": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "value": ":tada:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":smiley:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart_eyes:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":laughing:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":grin:" + } + ], + "26e892f0d98c4b5fd57ec6bba9f750602984abf0a2b3cbc7be6301934c0b3104": [ + { + "owner": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "value": ":heart:" + } + ], + "27bc875bc97749bdbf327f8608ecfd5e1e3965040e6f4584e1d0c3a101ea385b": [ + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":grinning:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":lollipop:" + } + ], + "2a3fe29983349f896c7ed53c6088462a089937660ecdba870738c07fb7bcd95f": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "2ae0c23b04fa74d9676e64b225a37ebe999260ed69137cc19361cce8b2132c22": [ + { + "owner": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "value": ":+1:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":grin:" + }, + { + "owner": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "value": ":+1:" + } + ], + "2b211f406c64b6681ccd0e0a1e1188cf865b3c8309ef9879d1af5d41247181c4": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":astonished:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":thinking_face:" + } + ], + "2c49c15e4851797147b3cd48ecfd1b3f1e31afd4e77b607bd6492f310022f77a": [ + { + "owner": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "value": ":heart:" + }, + { + "owner": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "value": ":+1:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":thinking_face:" + }, + { + "owner": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "value": ":heart:" + } + ], + "2dfea9f4698434bb1f2fbf0aef47295d924991f09a0449406fd2f585a5af8a2a": [ + { + "owner": "desmos1xlkg00kqf37k0uspljg4pamjdt6yjkxdzvjpdu", + "value": ":heart:" + } + ], + "2e18c725c1390591e40c1c66c4a3ed9a6fe7c8a82fe62387eda217478f2509f6": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":star-struck:" + } + ], + "2ebeac735fbc1be6aa850ff98c3750aa749616a528ccb5add9c6293a11ac3f93": [ + { + "owner": "desmos1up5dvafqg8whkf8e37z5yz47zd50fl3cpwj87u", + "value": ":heart:" + } + ], + "3076bd5bddf2d6757eb41812d220c752baadcaaaca452202461d1b2f924bff53": [ + { + "owner": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "value": ":+1:" + }, + { + "owner": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "value": ":+1:" + } + ], + "34938b0b4a427664a9b496323c79fcf2712492b51dbdac33aad0038e94a04a68": [ + { + "owner": "desmos1q8df8fp3tpx6gxjlhsc0vzqaxet6wa2pmxrhzh", + "value": ":speak_no_evil:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":speak_no_evil:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":speak_no_evil:" + } + ], + "35d7d90c264a3632203b28d453c2940f495b9f98d5277ebc6398ec641b3be464": [ + { + "owner": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "value": ":muscle:" + }, + { + "owner": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "value": ":heart:" + } + ], + "36616f40467d40793d05a00c484f3e275da6a2c6fac0ae14c75c22deab7cece3": [ + { + "owner": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "value": ":+1:" + }, + { + "owner": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "value": ":+1:" + }, + { + "owner": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "value": ":+1:" + } + ], + "3736467c59e31fd2b7bc9bdb043600cc957d59d28ee9e91476e192b28bd1941c": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "37377051b9eac59c8636d0890b2023b94b9a079633553e37e3080c9a7864db9d": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "38b957c4324cb3402bb4ce7d9925d0d535fece27edeabd13fe200066465cd572": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":yum:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":yum:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart_eyes:" + } + ], + "38ec27b2ed048f7c2569d741817fb5fdf8fdcd386146cea2f06a1133d5ebe5a8": [ + { + "owner": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "value": ":heart:" + }, + { + "owner": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "value": ":heart:" + } + ], + "3918bcdd8f81e4c4c21810bc63a10a51d9674d0a83d71606954be2a5f0e7977b": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + } + ], + "3a59a129b85dfde470d7ecefa495c81ae483b7fae5c28fa03d5412c74e546d70": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":wink:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":face_vomiting:" + }, + { + "owner": "desmos1lzlfh4z6qz6630g05ufz9u2psm7tvqdap6k7dy", + "value": ":grinning:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart_eyes:" + } + ], + "3b5746dddc1beeda81000364994854e910457784a6a931fc5baa57f57ab749a0": [ + { + "owner": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "value": ":heart:" + }, + { + "owner": "desmos1puh5url3u062vaeryw365jzzx8uuajdwjqrtyk", + "value": ":heart:" + } + ], + "3b69f438ea55beb1a1bdb857adc22c7cac9c7744420af4264c53eb2f19c61877": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":sunny:" + } + ], + "3e7dfbea6871bb86cf371dd51ff3ad9f05c9bf762bbe6874d8c4dc106c90e0a5": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "3e85c459aebf39f2f2a48cb3da04abdf3c85d32249c66111e61f6d7af0681140": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":zany_face:" + }, + { + "owner": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "value": ":rocket:" + }, + { + "owner": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "value": ":zany_face:" + }, + { + "owner": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "value": ":heartpulse:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":rocket:" + } + ], + "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381": [ + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":rose:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":star-struck:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":cat:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":cat:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":star-struck:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":rose:" + }, + { + "owner": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "value": ":star-struck:" + }, + { + "owner": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "value": ":cat:" + }, + { + "owner": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "value": ":rose:" + } + ], + "4309738299505c01a459506da086e278d0ea958c62d5fc7f052e91cbf6754679": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "43af5579eb26ccf06a5e5a1ce050ed21b29fcd963a9c88c02be73b1bcedeaf9c": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos1t74p8wd0thcq6hcnczp9eezaudvrec60y8l4hm", + "value": ":+1:" + }, + { + "owner": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes:" + } + ], + "44ef0b9c658b899cfd01aa559aad3a38515c5cb43a089b5169f85ba724f6dd39": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "450c0ece224df91f313f5b59a2b7f62857745f7b01bda74119b572fe96861896": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":+1:" + } + ], + "4618b62d42062df82a025ae0ed71829ba5c93523bbb99b3bed8c042099fe06c9": [ + { + "owner": "desmos14wtz9tuxu2ue7lmj3r8dvjajsvaryzttxr7dch", + "value": ":+1:" + } + ], + "4675d63e1d8c92937ea07096cb8df7bc9f1c74e709ce3b11c45324ae4f4d6635": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":rolling_on_the_floor_laughing:" + } + ], + "469a63694b6c9548d7f6183a745081b91e380de1d14aa863abdf10333ff1db12": [ + { + "owner": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "value": ":hankey:" + } + ], + "471b9488ac573227538e2fbe6c522f74996f50266c491fea871df1a8ad7c8be2": [ + { + "owner": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "value": ":heart:" + } + ], + "4cb48fdecb39e736588aa342e3838a37f379b3308ccd1dc5d347ee159213cbea": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "4db5e08a4243cef25bcd8c76d81b7d5518f0f3c81a8eda1b41d4aa5bccb8d866": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + } + ], + "4f5f4e36ef510417471d7c78d18be3a5f544e80d0cba43fd0b72185916e101f6": [ + { + "owner": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "value": ":+1:" + } + ], + "4fdd46ccb4b1c2ee761968a8d59ad5396959264ee1b1b968da38c429780fac0e": [ + { + "owner": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "value": ":heart:" + } + ], + "517f74af9ac94c1cdac62b51186d757b708a823c9d60676ddc3c6cc3f8186c9c": [ + { + "owner": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "value": ":heart_eyes:" + } + ], + "5613ba6047ecfe017d63b0ec400f12e27708f77b6a369c9b80474bea5c74df4d": [ + { + "owner": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "value": ":heart:" + }, + { + "owner": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "value": ":+1:" + } + ], + "57b8bdcce250124a0e1cefd56f0c7eae6e377a6ee2afee4f292a0d879570e931": [ + { + "owner": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "value": ":heart:" + }, + { + "owner": "desmos1amff90quajzsl4929t9dmqyplkqu5efmtcc6pc", + "value": ":heart:" + } + ], + "581845695dad7c2950eee1b9908e1567f500d625d9343348a5363f99a1c6122a": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "59805b9c4a4384a5d305bd02c7f847b3be04ab2df24985d9e49f5b435a6b62b4": [ + { + "owner": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "value": ":heart:" + } + ], + "59b2c45b56dfe98a4f181def79e5a404a86d731bf9ddee55cf6d3aa345a1a571": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "5a5862d7c66756cefe8c6260a34229ab7ea226a26080cffbc1d4b4fecd14ed85": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "5afe57f19645ace0e9bc489d192dfbf8bdc06ab8fc84eafee5c08fe1828fe81d": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "5cc924a902a98222a2f51871d59f8c6afeb08b011f90f224a0b10d2e1232c969": [ + { + "owner": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "value": ":heart:" + }, + { + "owner": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "value": ":heart:" + } + ], + "613fc3568b418879705644036b972cd0fa99cfbfc887a7416deb3136bce7deee": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":pensive:" + } + ], + "6485d8b4d1fc82896411886b32fce814112797b2f27fb683b73bb2a3ddeebd53": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":dove:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":space_invader:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":space_invader:" + }, + { + "owner": "desmos1jqpqjcmqq0rq2dzgk6y9cljvx35jwqndkxr54z", + "value": ":space_invader:" + } + ], + "64d6a0562f599a1ebf799748f2ba3c2b27e9b340f59a4d9bbd765940402e00bd": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "value": ":heart:" + }, + { + "owner": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "value": ":zany_face:" + } + ], + "6503fef2a7553d1f16c1722bd5e9ffc385bc6a2c4924f4172ac5e022d316d0d7": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "657845afdc3f029bc8b3c83e263bd77c179bff67f78ec687370ac7eef459ce5f": [ + { + "owner": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "value": ":heart:" + } + ], + "6620f5a1435fa64906810b9748cb3bff863a5c6601bef76959a2950f22a0bf20": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "66a5d9283c2b556c909b7cc998443bc31d2a1817a780939335a07be084dd3a9d": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":money-mouth_face:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":money-mouth_face:" + }, + { + "owner": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "value": ":money-mouth_face:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":money-mouth_face:" + } + ], + "66daae459a2c1e911f4ae234365728c0f108c2de0cad79a937095d9db3e9db33": [ + { + "owner": "desmos177jmcjpa02ruc6m2lt82583lrnv8eck25msr3l", + "value": ":heart:" + }, + { + "owner": "desmos1gravcjq3t98upzlf2rn74nzml5262ln4y2dlfh", + "value": ":heart:" + }, + { + "owner": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "value": ":+1:" + } + ], + "67df057f87c9a425bfaec22d3d06eed5d7e276d2a22c9da1763b921301e6551d": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "683883159ce4229b3d03e267e52b2e450436ec1b00eea909e677eed3747147b7": [ + { + "owner": "desmos1w8k4qyg395jkdf4lrrpkx47ncapvsszvhehdv5", + "value": ":heart:" + } + ], + "685573a9106221eb114dc232912475866aa3602fc7868cdb86f2cfda07e82513": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":relaxed:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":tulip:" + } + ], + "68795490973ad268b8c55f04a422a87ea9bc1386356883dbcab935b3c4e7094f": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "68e2dad01c64164b7187615e0fa569792d65a7155d8f0456c6ceae6e69612fad": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1l6ayl3wcvkpr5yn5a3tgqp3jv60quyxmrph2q0", + "value": ":heart:" + } + ], + "69312b328da061fdd21187fc0965e87a33a836266ac74d6be8f7e995dce79694": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":heart_eyes:" + } + ], + "6ac40a61ca0385da70868522fe9368c12b293456e8ea621c73082422978e7132": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":smiling_face_with_hearts:" + } + ], + "6cee81830fa2248e68892afb4bdb30c0445bb0066dcf668fe341d0b57701cb2c": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":feet:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":star-struck:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart_eyes:" + } + ], + "704fe60bff2a45d4425bb447f4404a4f8a18c653568930e977f1c2f1b93c2063": [ + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":v:" + }, + { + "owner": "desmos10gzach0ftnpfp7jazqvuhyxzdkjd5pnv5xuq5k", + "value": ":v:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":v:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":v:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":v:" + } + ], + "71e6f45ee2fe7c70db6712c948f3f34f91bcf390c5474ec60218c129ea821409": [ + { + "owner": "desmos197cmxuyr94uqy0r2vk47tu677ala8hn02pdt9l", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":star-struck:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":slightly_smiling_face:" + } + ], + "73e3bd28577b0db77b06985305a3ab97ca536bd0147edc22bcff86d44bc10aba": [ + { + "owner": "desmos1ft37z3kv89mtc2qzyudvmhkakeyje6kuwda29y", + "value": ":heart:" + } + ], + "74eae8e1c3165bea6007fcb8b01c18fffdb9d631c26175beb317016700afe3ef": [ + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":wink:" + } + ], + "77433b270369d6084125107f0fa9c815dac95a7550833e9a269c6086361f6fe9": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":smile:" + } + ], + "775e87dbe5d90c1a62e8452baca6473bbf00de8851b288c70d0ef7a8af81258c": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":thinking_face:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":face_with_head-bandage:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":face_with_head-bandage:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":mask:" + } + ], + "78c88265fa17cb2d75f0ed098b3289b3270f3ea07b505e12d1fd191f50f0503d": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":innocent:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":innocent:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":smiley:" + } + ], + "791c5b4649d2255736a55875adcd621cedfa700f26ab603b16db1b304438e4cc": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":smiley:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "79e103fb576a0897012b55a1b2b37b15bc0e83872324c01b3ce65e0df57e1891": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart_eyes:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "7a23ef9435c62271e033902c92c1353ee6f55dc81ae5de4b7bdcee858ee04814": [ + { + "owner": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "value": ":heart:" + } + ], + "7b754afb11fdb55d6a8de724bc563081ff40fa9095276c1c4ee8ef363533b2dc": [ + { + "owner": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "value": ":+1:" + } + ], + "7c161934ef3ffcef319d11c70ef123f15618a5001b03f6a6261840caf6262b59": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":100:" + } + ], + "7e0595fe32620e7b97c955086b7db3b07025a966ae2121c2afc4c005652b9d46": [ + { + "owner": "desmos1yqe66ky0v28wprdkxucdtehentypn3svyhfde5", + "value": ":heart:" + } + ], + "7f5c48d35729296df36a51f3ba70fb7c60096e9fd1ad0ea0f4165a83ab8c30b2": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "8006e0b6277a2aa5e44848dc811eda213bafaf77676c7b75e868287ee9255a1c": [ + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + } + ], + "8251102ef8bb5d5275f7dfb502f5bf38534b423e2837ab0b4b05f8a129509f8b": [ + { + "owner": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "value": ":heart:" + } + ], + "855e64ed5de045c872b39d250c711d56f92a880648366a0b20e5216c212b7821": [ + { + "owner": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "value": ":+1:" + } + ], + "86805590e6d83c6567ea9cc2f9d2c562be8b3d64cf84cf1af4decd71232b4ef9": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":zipper-mouth_face:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":mask:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":dizzy_face:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":skull_and_crossbones:" + }, + { + "owner": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "value": ":100:" + } + ], + "8720cc7a0855700c1b7c6d01428b86879abbb766eb6231f9d461ccdcd94faa7c": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "8735c82dc59313ddaf6c72670beef2a4c0b4eb8dbd3cc5536647f7268fee9759": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":grin:" + } + ], + "88789a0fd6eb76daa63405c7d4d59460e97b02d11fd847a3a3c6896f6dc69d0c": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":horse_racing:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":horse_racing:" + } + ], + "891e9102e4784b42c2eddfcdfcd53405c943ee6c3348c9fd813e6bbd033071c4": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "8c29b380549f3a6093266bb5f91016455ccc255ab735879e0887d7cde5937a0f": [ + { + "owner": "desmos1e8xaajgc0l5ftl5m5x390hg0enwjyd5pfyuf9g", + "value": ":heart:" + } + ], + "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92": [ + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":zany_face:" + } + ], + "8ed9bc5d3079cdd9255e07305db5a02c2fd808df2cf662ba034128041539e561": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "90b49a94388deeb7d01febd91885c7c99d10c6270dc649d865de34a02d851342": [ + { + "owner": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "value": ":heart:" + } + ], + "928064ac74fd935819f95348c41ffc4ddd89fb0bf7ef436c8539c8ddf6de59c4": [ + { + "owner": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "value": ":heart:" + }, + { + "owner": "desmos1zy73ag9zde9u7apa49gtw9yud9llap4f55jn7q", + "value": ":heart:" + } + ], + "9412ceaa229b01dd9a291269a1678a4b46b0c88746565c7c72af39aac5741f8c": [ + { + "owner": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "value": ":+1:" + } + ], + "95e0f2ed5e4abb2c3f681332ce99cdc501c6c5260e609c11f5658ab0f6ef9f76": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":joy:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":laughing:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":upside-down_face:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":rolling_on_the_floor_laughing:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":face_with_rolling_eyes:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":zipper-mouth_face:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":upside-down_face:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":joy:" + }, + { + "owner": "desmos1wsk63dkefrefxpq0k0fe27gx9lcz0gmg0pll7s", + "value": ":grin:" + } + ], + "96b9855391e70dd240770c0759a32a78738b944299cefdf5d9f98586964c0601": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":partying_face:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "97089e51ef7170e306aa195ac3b72179f029ffb9d06797a46afbdcd74f21f362": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":sparkling_heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":sparkling_heart:" + } + ], + "97286eb1572e13eec950e5439d09daf814155bdc5eceab64b8ceb94ad6e2c987": [ + { + "owner": "desmos1n9l3kaexp56pdcc8ttpw4sgy3j36w8acxay3g7", + "value": ":heart:" + } + ], + "97d9e9a60ba916658293d3acb80d20fa5940116649413b0ea4ee03a8d00f6d2f": [ + { + "owner": "desmos1ljmud4fjt766cneaz2xverm8rdlej20fhn9ejf", + "value": ":heart:" + } + ], + "9a7d7e633e95299d8c171be1c4b80e2cc2f59ad4f7e6ed18a55a43d719ef9878": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":joy:" + }, + { + "owner": "desmos1lzlfh4z6qz6630g05ufz9u2psm7tvqdap6k7dy", + "value": ":smiley:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":face_vomiting:" + } + ], + "9b7281eeae1fd3e7ce69e9003ad21e5a4e7f0e6a9f79c938866f779ce17d396f": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "9e8415d0f28e1cb499cb9b3ff95df55ece402b1b55c2292fdce5f9246cbacea2": [ + { + "owner": "desmos16l0xmm8teec49rk7q6wmrg95jqrpj87y7at7rc", + "value": ":heart:" + } + ], + "9f987ed708effba136abfb2c62b2891920dfa72d23b74086fcc5364ccaf084c5": [ + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + } + ], + "9f994d21e7a95c4ad1a8ecd2ee379fe692055b9786df6b2c36968ba795df0da1": [ + { + "owner": "desmos1nemxzd4x2djvm6vdt7w8l0ahy3fsr57pe65vxj", + "value": ":heart:" + } + ], + "a0c47fc628c01e0d492f9ba50e8c01fa1a033f8c0f43dca477eeed21bc80a088": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":upside-down_face:" + } + ], + "a1eb056dd3b58709c0351e27d3776596bc887626e4c50cb127d21222fd08de1b": [ + { + "owner": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "value": ":heart:" + } + ], + "a44c9fb9d8620a0889ef749a1baee27be6f20812bef9024356758ce71827ced9": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "a49893b26f9597be32da68b5bc645c62e03c1ae23204f80aa2db17762893a00d": [ + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":laughing:" + } + ], + "a7fb7a1bbb021c85827280fcc8cbc5e2a6856a8788c22b18772b611be57a1424": [ + { + "owner": "desmos1gmu4uevcvwfcuu43yp27gcv4ngxuh9sxfpv3er", + "value": ":heart:" + }, + { + "owner": "desmos1mzwqlssv36gca9dfs4s837lnp7hcczqgswc60k", + "value": ":heart:" + }, + { + "owner": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "value": ":heart:" + }, + { + "owner": "desmos1lavlnqhpka46ndvljk9kgp5v9k979csqldtfsg", + "value": ":heart:" + }, + { + "owner": "desmos1erh2eue5j88dpajapxmcyma88wxlh2rzgsa3c8", + "value": ":heart:" + } + ], + "aa17e8ef2e258f6b527d4752330eebb40659f5cfb1411eed169abb66c6575be4": [ + { + "owner": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "value": ":+1:" + } + ], + "aa27fcff461e8de14d7649aa14d56c7c9b78c29356e9c81c0ccc676654940ab6": [ + { + "owner": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "value": ":+1:" + } + ], + "aa7e8e4dbbf8a1accb4506ec10779c7698ffb6e9ab5b1cccf3194c750f36d189": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "value": ":smiling_face_with_hearts:" + } + ], + "aac72b6e578c16f042b66bc2e1712e0a2343df122a2d972ea088180a44f9b178": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart_eyes_cat:" + }, + { + "owner": "desmos19zctr7jlmdrj9hymw6633mnqlf4pw9uxqalmdw", + "value": ":heart_eyes_cat:" + }, + { + "owner": "desmos1e47r5lmctw07ywqqtxm35kurywwez7qdm4mlw4", + "value": ":heart_eyes_cat:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes_cat:" + } + ], + "ab822d65a635cbfdda18a2f3ff04fadb775696896f4ffc160098ba8e7dbff86f": [ + { + "owner": "desmos10gzach0ftnpfp7jazqvuhyxzdkjd5pnv5xuq5k", + "value": ":100:" + }, + { + "owner": "desmos10gzach0ftnpfp7jazqvuhyxzdkjd5pnv5xuq5k", + "value": ":+1:" + }, + { + "owner": "desmos1qpg3hsvmlu8pz866tspn64nmat6sgrwa982q6m", + "value": ":100:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":100:" + } + ], + "b05b1359ed78c52e4a9ff209f0a0dea6a01eda304d69995d8f0d9b3087ce8021": [ + { + "owner": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "value": ":heart:" + } + ], + "b1ca8a78b63ac5fb1c62ea1dc24e99ddd300aff4cb693596256c601dfd6bb0f5": [ + { + "owner": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "value": ":grin:" + } + ], + "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":smiling_face_with_hearts:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "b39056ad9c235e895520a6569fdf3edbb11769541c83ecb39364d4f510a7b7ac": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "b40ddce10b03ee9c1a740b75b56255ea6e00ee5231eb59346bef337f0a45612e": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":heart:" + } + ], + "b71bd3c8d238aa66d406086debef1616b4ab02f8e534032a2c497c30dc6c5f4b": [ + { + "owner": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "value": ":heart:" + } + ], + "b75201687041a044bce359ccb6cb0a1d354b8f828e5cc1e4d915a444c2088ba8": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "b8e870750b3210061dfe5d12af71481badac7744c48e4979e4fbce725e9ae1c1": [ + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + }, + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":relaxed:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":star-struck:" + } + ], + "b98b2b021a93f16e04031c4d4014e80aef721f859afb87030162fb481fd42a18": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":laughing:" + } + ], + "bc95556ae56b5d534e61f007b07a33047842fd0e978ec47aa0471e5cf9fe3213": [ + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":moon_cake:" + }, + { + "owner": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "value": ":moon_cake:" + }, + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":thinking_face:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":moon_cake:" + } + ], + "bfe68c7b6e89a958b1a429d8057537073537879d68659000b6ade357455e6d7f": [ + { + "owner": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "value": ":+1:" + } + ], + "c113c1dbcd2b77e111f26d4880645dc81b4393871712d483a5498f684dcd97fc": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":lion:" + } + ], + "c259064b41b47cb0f7f57c3ae1d1741f4ddcd82316d2c21328ec0aa73b7fc696": [ + { + "owner": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "value": ":heart:" + }, + { + "owner": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "value": ":+1:" + } + ], + "c3f3e3bccbadf9ceb8eeaecbfac399cd3d49d303204861511401b0ca0fa5cb44": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "c4082b9bcc0b8627a7db9501fe205a010e910482509615479d041beb58b2cf60": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "c42b475a80e47f83085612b4bd20ab472ce67e99ef35f30d237c7e7cc16cb411": [ + { + "owner": "desmos1erh2eue5j88dpajapxmcyma88wxlh2rzgsa3c8", + "value": ":heart:" + } + ], + "c59fc8486bbf8adaeaa2648b55ef6a14f60c28dc3b136fe8bc3f117b0ad756c4": [ + { + "owner": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "value": ":+1:" + }, + { + "owner": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "value": ":+1:" + } + ], + "c600d2109cbb2cceb9de766e98298d56f50c674cdd9b33dea8274fe4fa8e4100": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "c6c615fa00c75018f330db9449b39454097e1c6a3327b45546e9747d8427191e": [ + { + "owner": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "value": ":heart:" + }, + { + "owner": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "value": ":+1:" + } + ], + "c96944fbc5e0290bbd9b535d07152987eb1df941ad310bb8cedf38c2ab47344c": [ + { + "owner": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "value": ":fire:" + } + ], + "ca54079e6c1653f1728d3c594735423a6da588c7227dce0b698cc66c433e4e64": [ + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":smiley:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":grin:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":slightly_smiling_face:" + }, + { + "owner": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "value": ":100:" + } + ], + "cbca5f9621eceed97ba73057e92674614c6e5fe08040ad4d3d9eed3746ce754b": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "cd755a7e2c9ad845c9e86ee777d83c373469bb662bfd8ef7d3b37ae4d94541f3": [ + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "cda198fa449ed39ecee0d4f8edb5bc6b5685e68e91747cf72b4bfd08ecc80fe8": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "cf8403745e45519d6f67e8e9f0e9cd58d5ed6d266ca752492e982b9b4bdc0529": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "d11b28a6b9f354700a3dff8ce3bc1140d4099582edef5408e93064e302ac63b2": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":v:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":sunglasses:" + } + ], + "d1975b2e949535a9424900f871ade87533ab5e4218c48bfe4728958a0162b4d4": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":sunglasses:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":sunglasses:" + } + ], + "d209fff1555aae1c048d6bb2d95a2d37ad87f34365ec250bae2a2f52efefeb69": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":rainbow:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":smiling_face_with_hearts:" + } + ], + "d326b22596c8e59ddb69726f68b775db2b81d0818e369175e0605bff94e492b6": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "d5f76a6a574bb8620f1fc9bd1da5f2d4249f89c6fd406ff9393c0ff6fdb59278": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + } + ], + "d6dd28b55b07f4897ec1f89f49eea72856b16ad807d47126d161ac5e53d7d8ea": [ + { + "owner": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "d95bff0b19bf5f8f00787669027b05825501243e1126c5684d5e82c516e2140b": [ + { + "owner": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "value": ":thinking_face:" + } + ], + "d9e05dc07ab47dfa3f30b06822cae9653fa5c671d5841e7b6a83bb20064215e6": [ + { + "owner": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "value": ":+1:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":rolling_on_the_floor_laughing:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":flag_ceuta__melilla:" + } + ], + "db1e801fa24679f9edfc092ef877aab15f39a25d04ff836977717d6806921c06": [ + { + "owner": "desmos1patn4vz7dcvj7ae5t7jje0red4jrm66w0tku8d", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "value": ":heart:" + } + ], + "ddffc6a7a1e73f7d27696ceee2db6b84f7a3067b2c744f260534b6574c9a1b44": [ + { + "owner": "desmos1rt0sdmma2mhcgq463s2m5myf5w2mcks3cr4xjn", + "value": ":heart:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":heart:" + }, + { + "owner": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "value": ":heart:" + }, + { + "owner": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "value": ":hugging_face:" + }, + { + "owner": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "value": ":+1:" + }, + { + "owner": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "value": ":+1:" + }, + { + "owner": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "value": ":+1:" + } + ], + "e118fa2f999e085549f68f7b36ca86a6bd480315772cd20c8880fcb05f54e783": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "e1702bc2d8b818ba97435061bc6505c896f306de27d47870a3f94f924eb648e6": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":headphones:" + } + ], + "e22788aef84797225c7c8d8ec8d1626d427aa8b1cac0536213f0dc86b388a4cb": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":yum:" + } + ], + "e2c651aec74109c88a6bfa770f76eea368b506896c9b9c0c7532a48243bb384a": [ + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":mask:" + } + ], + "e81ee7fdd2b286c3d092d5fc152319801ef650b4683415f2ec622071e7ca8772": [ + { + "owner": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "value": ":smiley:" + }, + { + "owner": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart_eyes:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":astonished:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":smiley:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart:" + } + ], + "e8271575e3f8f6556ff904751f5aeed290f925de3d0517c4f60ba263ea1cbfe7": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "e9300912e39fdbb6fbec3abe1e4244d3e898822547ddc3de855c7c0ecd53ae97": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + } + ], + "ea39ef209a8ab2d5b62966abc8421dfb7581c687ffe79d5ed997130cbeb9755a": [ + { + "owner": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "value": ":heart:" + } + ], + "f06201439ad3326156ffadcc17263965660278ec8bc1a9e640b0e0093440b3eb": [ + { + "owner": "desmos1u2g42tlzq9jtzldkpwpr2mxcvqaqj74eenvu25", + "value": ":heart:" + }, + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":orange_heart:" + } + ], + "f247706913e876b87ae0f923141823137cd136eead5da7645eef8d2f5b262348": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":pensive:" + } + ], + "f24b3cedf3d03ff878890030169b7fe1f4856832296ecbfd2821d1c2e109b88d": [ + { + "owner": "desmos1v9q6q82aas3vknhngmeletvzhlhk5jqpy2t39a", + "value": ":+1:" + }, + { + "owner": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "value": ":+1:" + } + ], + "f339b5af2c47dedf307f8f20d645bc374a2715e0dda71f6541c387ee2104bebe": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "value": ":heart:" + } + ], + "f45238705c9108a12efbcb0f3ec8191b78baed947e80f89bd981d22b4f52a82d": [ + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":star-struck:" + } + ], + "f4adc73d852a7ac3bec63fea227140ebf8f6e4d7ca2e66080e27a3add6d88c57": [ + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "value": ":heart:" + } + ], + "f8015acf7734e551a52580b5c28fdc993b0319673c9e994c69bf11c96ef0dacb": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart_eyes:" + }, + { + "owner": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "value": ":heart_eyes:" + } + ], + "f8fd4708dd3d9170cf55457f439df4f868e205070f92886492b4e974410cec70": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":smiling_face_with_hearts:" + } + ], + "f913854411ddcb99b20ed600e0af04abf865b83c183d4a2cf6fadb1664e95e4c": [ + { + "owner": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "value": ":star-struck:" + } + ], + "fa04c2fa9aac2e7f7e651c40bc5a098bfa269f416088bafb176309a461cba9bc": [ + { + "owner": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "value": ":heart:" + }, + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "value": ":heart:" + } + ], + "fcf0fa07c23cb2010449c4780e7747037b365074e1767f1694a2ab0c7058bf24": [ + { + "owner": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "value": ":heart:" + }, + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":heart:" + }, + { + "owner": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "value": ":innocent:" + }, + { + "owner": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "value": ":rabbit:" + } + ], + "ff9c05b9525c75b769bf06a4def0c8346a7aa4dd393c43b9c7bcca03816a2c5e": [ + { + "owner": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "value": ":heart:" + } + ] + }, + "posts": [ + { + "allows_comments": true, + "created": "2020-03-09T08:13:35.021Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "00727e9704aceb6e10102366dcdeeaf94d063c4588cb774ba6d37a40e619b258", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy International Women’s Day! 💐💐💐", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-14T18:18:56.489519633Z", + "creator": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "id": "00f7cf78bb3e31d72605e186bcdfd11d2d0195566dbeec61d5fe59aaa5eb3f75", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hey, I can see a Dragon around", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-28T08:55:26.888Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "01b091d2495a3d2b217a8139f94079b7723e304976a9f39157d557aad6f39247", + "last_edited": "0001-01-01T00:00:00Z", + "message": "早晨", + "parent_id": "37377051b9eac59c8636d0890b2023b94b9a079633553e37e3080c9a7864db9d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:25:15.591922768Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "021fe80f2aa720b556b56afdc1932e785d6a6775e396f242fa2bab007bc7c293", + "last_edited": "0001-01-01T00:00:00Z", + "message": "One day...", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-19T09:27:46.727Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "033080f107d68155e20228c4709385167cb0dfa19c0643d46758b2690dbafba0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“What is reasonable is real; that which is real is reasonable.”", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-03T14:31:23.305Z", + "creator": "desmos1ty2qgrk0kvrtycmqcpngxt0af8hfwr6q8xfc6c", + "id": "033c4afac3342ff4dcc0a36da33a01fa9143ac43d462d3fd0ed52be1102eae04", + "last_edited": "0001-01-01T00:00:00Z", + "message": "oh wow!", + "parent_id": "86805590e6d83c6567ea9cc2f9d2c562be8b3d64cf84cf1af4decd71232b4ef9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T06:26:19.862851614Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "03aef4fb393caad1f0ccf66246d0e930a97b316d30f19c22b65b1c6f87eda69b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Coronavirus", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-26T11:33:00.260503952Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Very concerned" + }, + { + "id": "1", + "text": "Somewhat concerned" + }, + { + "id": "2", + "text": "Neither concerned nor unconcerned" + }, + { + "id": "3", + "text": "Not very concerned" + }, + { + "id": "4", + "text": "Not at all concerned" + } + ], + "question": "How concerned are you personally about the 'coronavirus' spreading around the world including the India?" + }, + "subspace": "60EB893B5B5EEB236C5600E6ED157720F5389CF9B02F5266D6863CBF98B560B0" + }, + { + "allows_comments": true, + "created": "2020-01-31T19:44:38.818401379Z", + "creator": "desmos1cf2y5687axm6pmrr9ferdt69znjpdfan0qjr0e", + "id": "040b010cd0dda604dc047a8a9c7ba0b3e4198f64cf93ba24fdb783c0bc645fac", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-05-03T11:47:14.419Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "044a81561f1737ce018b1741b88aba6eb8fe383a2514abac950fd46c55b8da97", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmV5j589CJRGAfjqM5aPkizYCmX1asPL6LiLX4X2eex57S" + } + ], + "message": "😋", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-28T01:05:25.625Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "045fb6b91da15ec1befa26b4b897a34cc30001bb00ca236d86c230bb815a4b15", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmZ6Ntm5HTV5DukGquESfMvAqXsBZzKxbk6prebTAFY5UH" + } + ], + "message": "Visuaizing IBC transfer with custom prefixes and denominations 💪🏻", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-17T13:34:18.133356423Z", + "creator": "desmos1g7mzep5lfempedgcfrytrausnt8d8w889muwmm", + "id": "0494fa871230d745bdd381ef0ca667f1b72c2bdf94f327da7369bfdd4c41a8d5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Worldgit push origin master! My first ever post on dSocialNet", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-21T09:30:59.432Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "04f419b81524f236dfbd7bf953bc365c01547faa861d530dfe0a9addfe13aede", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmZ9vBQ5JAvzTTUBSeFFf1JzsGFeaDs8VfhPMXwXKcwUnp" + } + ], + "message": "Again 🤟🏻", + "parent_id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T19:14:20.534Z", + "creator": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "id": "067bdc9ae7c2944fe7b36d119c16abb195e4c7bb1b62e1afe495d2c5fff98f84", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmPWV8rSbH3R1Pgf5m6bZ4cDzBvupDYyKbY5QCg7USkd7x" + } + ], + "message": "old coins", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T20:52:29.149479555Z", + "creator": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "id": "07571c002e232135526847f20f3bf817b1129c1132572b47fbd44116814d6e7d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-20T12:45:51.376Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "07ffb96fb932a817e08ec58673fdd4ad129138a647e14373670674fd2a7b99d9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "2", + "parent_id": "19c7743df7971ad74115bf3a7f0e5d1b551de330de3dc08e521f8825cc31be0f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-30T02:23:39.03384Z", + "creator": "desmos19lt9fwhrlmmkwjkpcmecxeen8lhag555xhfyg5", + "id": "086ff8d0f275a0c54e871c54045254cbb029ba684d70826c516c75cb90a0195d", + "last_edited": "2019-12-30T02:29:44.03384Z", + "message": "Hello world, this is luckyfor123.!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-24T16:34:40.322Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "093a6057e15d3990d8cc769fbcab978ee997ac3330f709f0b37cd3a88b0d4046", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy New lunar year to everyone 🎉🥳\nKing Hei Fat Choy! 🥮", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-15T06:31:18.918Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "09e8767f04f1983b05ee56dadd739e6787b2a84e8d7493106d067bb04b0bbd3c", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.desmos.network/ipfs/QmNMBqqizMRs6y44truq466oEBYasmKHDr9cjewoQTR86Q" + } + ], + "message": "Mooncake looks so special among all the social apps. 😎", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T14:43:19.332Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "09e8d0e8e36b109860d6e6214e51f0d1b68af627e8f39ca4811db194207f7216", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmURekL7BtwoK8gGRokKAemPGJEXvmq3qRDTW43GPPFit7" + } + ], + "message": "Burgers from scratches #1", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T09:11:05.088504215Z", + "creator": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "id": "09f9cc17d6a7c534dacea4f9bc188d54d20d86159e08a266bf4d6aa99881a777", + "last_edited": "0001-01-01T00:00:00Z", + "message": "The message to the world from Breader... ", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": true, + "created": "2020-03-30T08:38:51.782746208Z", + "creator": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "id": "0a9beb5735ff7cf986f732e35e24206b53d2b10d98ebe6663d68a0351eeaded1", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmQu58McLQktGJvYe3rQXmvRLho9ZtFksXhLFsxuvWcbdM?filename=cover.jpg" + } + ], + "message": "Desmos Cover", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2020-01-17T07:27:26.086Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "0adee0963051bf6631a3f98fe55042c8e0eba1fd2168be6497484546d432c951", + "last_edited": "0001-01-01T00:00:00Z", + "message": "asdasdasdasdasd", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T11:19:07.911Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "0af5b98efda9ffebe78035e7882d2797dab52f8c5140e7d8d9c4c8943882c28f", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmRudB5obsJbrYWxAwg5Y3YSuX6rJga6Gs9u3W9EF3QtPm" + } + ], + "message": "What do you want to see next?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-17T00:44:36.534Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "0b6ec64aab1bf4ca15e3873eef417e82f32ee5c5b22532752d9e2a328f1b5446", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What doesn’t kill is makes us stronger.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-18T11:15:17.538157325Z", + "creator": "desmos1ar7ptckh355skxcwfl7zne8krnezp53kllyepl", + "id": "0ba5017c85961e62b8b936f60f52277b4417838254153aad3b0cc29937a6b50f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "post", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-20T07:33:10.790016411Z", + "creator": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "id": "0c2217ae74dc637b37003073ab4d500de9c2a59bfa92092a8b22252f5e8a7c03", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Test", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-22T02:57:44.205Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "0c2e8316058d55c48750219e38f37538173b69d33e93ddf9eccd6248ba5dcbc2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T12:46:24.719394021Z", + "creator": "desmos177jmcjpa02ruc6m2lt82583lrnv8eck25msr3l", + "id": "0eec49df8b263286b6d21b9bbfc88bd4fa014d91b2716d10eba00c43b43ca759", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos", + "parent_id": "", + "subspace": "2d50764d0c9f25a1e3285602db08ab8662da9b4c5b09ab09ea776b763b375983" + }, + { + "allows_comments": true, + "created": "2019-12-20T02:13:49.03384Z", + "creator": "desmos1zk3ms4n0x8h98axwm4tflkrnn4mmy8u28nnmfd", + "id": "0f4b0ffe25896f08fc221e79ab4c7b9490fdff32a0d3894e20bb7f417117484b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": false, + "created": "2019-12-27T18:54:49.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "1135e97293cc3afb47cf7b6bb20868b34ab5a3fa5573a15f7f3d19f8d593c220", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Let's achieve this together!", + "parent_id": "68e2dad01c64164b7187615e0fa569792d65a7155d8f0456c6ceae6e69612fad", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-03T14:32:59.532Z", + "creator": "desmos1ty2qgrk0kvrtycmqcpngxt0af8hfwr6q8xfc6c", + "id": "1190e6b782ac611e0286e84fa87dfe664bb2ee6ee8380d426fc7adab64487305", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing testing", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T17:39:13.024Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "11b491a237c7f1555291f8eeb1b67abc7f8b0c12793f18e3c5cbc321b89b6ea2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "ship hope (but make sure it's a working version).", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T15:41:15.593Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "11cee369888628b5fb8b21b68b37a4ce634c7061522c4cf0475ba4d09d2efaa5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What if soy milk is just regular milk introducing itself in spanish", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-24T13:59:52.914Z", + "creator": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "id": "12bba6721738efdacd376ba556f56b660814c8cb37ab80a3265e8ba079c061c3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Woho! I'm here for the cake too! 😍", + "parent_id": "4618b62d42062df82a025ae0ed71829ba5c93523bbb99b3bed8c042099fe06c9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-08T11:17:17.132Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "1345c6c48fe383290d907e053c4fd48f09efc18beb24e623d0ab7b00ee6082e7", + "last_edited": "2020-03-10T04:35:21.527541Z", + "message": "Happy International Women’s Day!!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-07T09:29:19.417Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "13ba624c0ad6ffea3d3d492b4c68e3d8f3643ad097fe8a5ae92d63e1d42f7d22", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Are you ready for some news? We're preparing for Phase 3 of the Desmos Primer program! ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-27T10:35:07.791Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "141e5bea03a282ecf97b9832b56d05cae252c8e57fec76dc62108d23a4cda652", + "last_edited": "0001-01-01T00:00:00Z", + "message": "doxxing myslef as twitter.com/gadikian", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-14T05:13:39.873Z", + "creator": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "id": "14ad7302350e596a757e305b0e3f274d84d2b5e39a5bb10ddaa2d2697aa41048", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmNMW2ovw4H9U7o4u2xDUo3b1dj488fBeZ5qNbSGQEyjWj" + } + ], + "message": "Stay home;)", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T15:10:02.143Z", + "creator": "desmos1z97x0m5zmq0502hha4s0z36hpy9zray3cq2a67", + "id": "1526b6af39b22c550c768610b4672b3ba72fa9da7dea76759899a41a81031758", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy birthday dude", + "parent_id": "264bdedcb20c712b07f6abb7e81408ba3d08967452164347e46afdbb81f8a722", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-02T05:23:24.976Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "15cb5942ad200fe3530b8a9ff2f6ab6a5eb60164db98844919a6599bed7bf402", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“if you set your goals ridiculously high and it’s a failure, you will fail above everyone else’s success.” - James Cameron", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-07T09:35:14.629Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "169a4be555a73875841af61a2779bcba1cf667d9e2ab04c26f17c05eb1e3e854", + "last_edited": "0001-01-01T00:00:00Z", + "message": "歡迎歡迎!", + "parent_id": "891e9102e4784b42c2eddfcdfcd53405c943ee6c3348c9fd813e6bbd033071c4", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T13:41:44.701Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "16b5390b68a79b54aed05ab62929e04c44f11fe5b949c0bf96351714ad8bc79b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What’s the first thing you would you do after quarantine/social distancing? 🤔🤗", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-30T14:51:29.954Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "16ce04bcf0e1a720045c74d66ee055351bace22bf91d880f507f32eca3843a52", + "last_edited": "0001-01-01T00:00:00Z", + "message": "lord of the rings!", + "parent_id": "2c49c15e4851797147b3cd48ecfd1b3f1e31afd4e77b607bd6492f310022f77a", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-28T11:19:29.03384Z", + "creator": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "id": "172fb00864632bb4dcae5285a5a0dc88694e481655ff7a3ce7f302f20daf6af1", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I wish a favorable development for the blockchain industry in 2020!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-20T08:07:49.03384Z", + "creator": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "id": "181589070d27efc79b9de090cc69f0b2e0586dd409589d635c03b89f6156966d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-08T13:11:13.215Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "189ff858bf24feaadb331dca4a185c3332e3f931a148dd1683eac871cb15ed34", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Well how many women are using Mooncake? 🌹", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-21T05:44:33.429Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "19112db27ae54716a0d6538e2fef371d018e421ec7a715b438352657c721aeaa", + "last_edited": "0001-01-01T00:00:00Z", + "message": "-Men", + "parent_id": "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T07:58:14.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "193c5b9e414e5ae183c0915a97dd7a309aac512df1d975aa64381310f4f39e63", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T08:51:32.262217" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-20T12:39:02.855Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "19c7743df7971ad74115bf3a7f0e5d1b551de330de3dc08e521f8825cc31be0f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "2", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-22T05:20:24.03384Z", + "creator": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "id": "1a0d2ecca7fa33ca2f23dbdcd358fcb8d31911eb436a058d374f94b592f5779c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi, I am ak", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-05-01T09:44:39.178327571Z", + "creator": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "id": "1c9d3c4f1dd026546e115dad613e3e75853151f6a95d50e2237c199530996103", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Try poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-05-02T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "BTC" + }, + { + "id": "1", + "text": "ETH" + }, + { + "id": "2", + "text": "ATOM" + }, + { + "id": "3", + "text": "DSM" + } + ], + "question": "Which crypto you prefere?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-03T05:51:09.256Z", + "creator": "desmos1y6afr4cfvrmf0ws076g7yh5vdxswej4ahcvdl8", + "id": "1cff2d6923d256c8acf9ef5b8461d5d63968f26d169e6d523c725289122a2496", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-12T20:06:17.544326406Z", + "creator": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "id": "1d3d82c03c623e924808d0c93b25cab75ca229e121f769a45f0095385ed2bff4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Desmos", + "parent_id": "", + "poll_data": { + "allows_answer_edits": false, + "allows_multiple_answers": true, + "end_date": "2020-05-01T12:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "No" + } + ], + "question": "Desmos token?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-01T14:58:27.215950078Z", + "creator": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "id": "1daac98f2872783eb8a2a443c438652f5a5b99232bc4eed84be83287578e7891", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "coffee/jpg", + "uri": "https://ipfs.io/ipfs/QmVsK1AmVw6vkpVkw8XB4L2hhWQcPf5uAwKeUdXVJadn2N" + } + ], + "message": "Coffee", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-12T09:27:35.082Z", + "creator": "desmos1qpg3hsvmlu8pz866tspn64nmat6sgrwa982q6m", + "id": "1ded52064ac9537db836dbc288b7cd95851356d4a87b05162aa0483451b864b1", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello Desmos!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T12:54:19.879Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "1df8229ada2aeb6f31de5ad9d99d346fab6e1ca6467b0dd7218db33ca6590889", + "last_edited": "0001-01-01T00:00:00Z", + "message": "looking good here", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-27T12:58:14.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "1e59342d01084f6c3e40cf7a23900e4d388c5ff7536f5104ee00b2a08d956a5d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "There will be an endpoint with search query soon. You may keep track on this [PR](https://github.com/desmos-labs/desmos/pull/57).", + "parent_id": "471b9488ac573227538e2fbe6c522f74996f50266c491fea871df1a8ad7c8be2", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-23T15:27:47.199Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "1f34d4366495316a2f44c648d3637f6c5362dabaab6a6ab19fb88b65847b3e0a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hi", + "parent_id": "2955bece0e7e582ca0fc5ed5ccb652fb810ccb2167fc9059fc08530f709a896e", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-04T12:15:49.617Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "202bd3f692273d69f5561574e04240e82d7b541f90e76f8327a6dbaab62b8890", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmbGGiJCVJi69uW4ikcmagmL1LCCdtGYoGUy2D6xwZ7WE1" + } + ], + "message": "do you agree? 😋", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-17T14:00:35.015Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "2030b1be95783e9002be686eefa4e50ee34125445d064f17d3f59c14b7fcc807", + "last_edited": "0001-01-01T00:00:00Z", + "message": "do cosmos projects consider themselves web3?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-14T15:12:03.315Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "2127c22bf7b9ef01aa816f17e4c52a03e3091c2ea2e8650e2c112ba137c9f1a8", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I think Mooncake is going to be so much fun 🔥", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-15T21:52:00.329Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "21750baf785ab0e769cf326aad4a45c6f1a787603ed37a99e122e6ddb04d6103", + "last_edited": "0001-01-01T00:00:00Z", + "message": "For everyone using the Android version, go get v.0.0.11 as it adds the pull down to refresh mechanism to the posts list 😍", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T05:03:11.446Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "236e53f167fd9579815d06c59654455a81dd6dd0286cddaba88d5edc7e37b507", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🤣 we have the same thing in HK. All the quotes are claimed to be from Lee Ka Shing. ", + "parent_id": "ca54079e6c1653f1728d3c594735423a6da588c7227dce0b698cc66c433e4e64", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T12:08:00.099Z", + "creator": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "id": "24894e8bcf4c8dddd1dc66f3597981dbdfd7f44c1a15afac96e0f622a2541c6f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "dhehfh", + "parent_id": "a49893b26f9597be32da68b5bc645c62e03c1ae23204f80aa2db17762893a00d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-22T18:10:28.66244973Z", + "creator": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "id": "24a740ac41e92e812470781d3f74f4819c035e58bcbc8e385c353902774a7554", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World", + "parent_id": "", + "subspace": "6ff67fe04c7dadd1ad005667b49d01980d561a2c6941ad45dc9b2e8181c89497" + }, + { + "allows_comments": true, + "created": "2020-02-27T10:34:47.303Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "24d80c82b3c05b97effe71077cc1d2e2c566058752104a81aa03292a50ae556f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "link turns blue, but is not clickable", + "parent_id": "4cb48fdecb39e736588aa342e3838a37f379b3308ccd1dc5d347ee159213cbea", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T13:03:47.973Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "257e77aaf05aa7e88c50bf9dd1398976a4e03af18ea3eea785286f4465f85cea", + "last_edited": "0001-01-01T00:00:00Z", + "message": "that’s a wonderful view! where is it? 😃", + "parent_id": "b8e870750b3210061dfe5d12af71481badac7744c48e4979e4fbce725e9ae1c1", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-18T19:48:02.552Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "264bdedcb20c712b07f6abb7e81408ba3d08967452164347e46afdbb81f8a722", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy birthday Leo! 🎂🎉🎊", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T12:22:49.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "265890cb9d0c0a0654851029610b14ec210eeed0a4db97936b531869215a0eab", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Another test", + "optional_data": { + "external_reference": "dwitter-2019-12-13T13:56:58.877643" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-20T00:51:14.03384Z", + "creator": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "id": "26e892f0d98c4b5fd57ec6bba9f750602984abf0a2b3cbc7be6301934c0b3104", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello desmos!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-07T06:58:59.303Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "27bc875bc97749bdbf327f8608ecfd5e1e3965040e6f4584e1d0c3a101ea385b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Give me liberty, or give me death!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-10T22:02:06.312631563Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "27c5a3c6a6d2daeae08b123c54afac95c5c33633c1b2e89bbe2f15c78b3e4d33", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmYf6Jz9JQDNtGjKoLzjcPLZgUcSdUJffSTmj1siFks3Ae" + } + ], + "message": "I am Spiderman!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-21T23:37:47.431Z", + "creator": "desmos1fqyt7zs5s65quung3y2amp5j8arkd9s6p6qxmz", + "id": "2955bece0e7e582ca0fc5ed5ccb652fb810ccb2167fc9059fc08530f709a896e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hi", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T06:46:12.502Z", + "creator": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "id": "2991167c52062dc0e9f3fc139c8909986da91c6b9a3d3175e180b4624408bc29", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello", + "parent_id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-06T12:28:59.229053933Z", + "creator": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "id": "2a0d06abcb5ab4b031181207518414803ed20017f4b8abba6ca31e0d9b4fcdb6", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.io/ipfs/QmUsmrn2UekS4mgj6jbXosd8wCE8wqD79cBwRq2yPL3vPp?filename=logo-badge.png" + } + ], + "message": "InchainWorks here!", + "parent_id": "", + "subspace": "b6bb3184ca517c0e1d4fbdd878a4c4194cd22599e3f2a1f48467c1d8561aa251" + }, + { + "allows_comments": true, + "created": "2020-04-17T23:47:24.164Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "2a3fe29983349f896c7ed53c6088462a089937660ecdba870738c07fb7bcd95f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Lucky you! 🤗", + "parent_id": "d96bf27e7aac3c2f051128bd743f260e3df46b1a1504a7cf922b92e24c937b1d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-15T09:29:33.993Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "2ae0c23b04fa74d9676e64b225a37ebe999260ed69137cc19361cce8b2132c22", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Are you guys ready to do this? 💪", + "parent_id": "c59fc8486bbf8adaeaa2648b55ef6a14f60c28dc3b136fe8bc3f117b0ad756c4", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:43:47.189344031Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "2b211f406c64b6681ccd0e0a1e1188cf865b3c8309ef9879d1af5d41247181c4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I feel trapped", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-04T13:19:16.694Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "2c3e717ecf813acf59db57b46891f41440ca16f465a58e9ed562a7917c3a389c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi 🌙🎂", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-19T08:59:05.647Z", + "creator": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "id": "2c46b248ab9f6ef7343191dfe089d2d4bde1a470748e061ab1d4b799a4166f44", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Bavaria :)", + "parent_id": "257e77aaf05aa7e88c50bf9dd1398976a4e03af18ea3eea785286f4465f85cea", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-22T14:41:35.501Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "2c49c15e4851797147b3cd48ecfd1b3f1e31afd4e77b607bd6492f310022f77a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It's like the great stories, Mr. Frodo, the ones that really mattered. Full of darkness and danger they were, and sometimes you didn't want to know the end because how could the end be happy? How could the world go back to the way it was when so much bad has happened? But in the end, it's only a passing thing this shadow, even darkness must pass", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-07T07:23:58.923Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "2d85a72a6138f25ff5a2d0fdc45d68a76889f574da454b5b35efcd7779e08fee", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I like Prosecco!!!", + "parent_id": "5a5862d7c66756cefe8c6260a34229ab7ea226a26080cffbc1d4b4fecd14ed85", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T09:28:04.258Z", + "creator": "desmos1qpg3hsvmlu8pz866tspn64nmat6sgrwa982q6m", + "id": "2db2d64d98b38e671bd72253ff5baee339b69e962b52a96c5333ec87bff05c8e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "my comment ", + "parent_id": "1ded52064ac9537db836dbc288b7cd95851356d4a87b05162aa0483451b864b1", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T08:46:07.242054997Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "2dd4f3e47f5a486fb4b9bb15cde7d86795cd902eb7ec15e23a981c641fb2a282", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "crypto_assets/jpg", + "uri": "https://ipfs.io/ipfs/QmW4BE2ntirw18tQ2dbagqk1rKuHhPFNjsVpzYKNMebPcE" + } + ], + "message": "Crypto Assets", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-23T00:26:34.03384Z", + "creator": "desmos1xlkg00kqf37k0uspljg4pamjdt6yjkxdzvjpdu", + "id": "2dfea9f4698434bb1f2fbf0aef47295d924991f09a0449406fd2f585a5af8a2a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "WOW Desmos", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-23T03:19:44.295Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "2e18c725c1390591e40c1c66c4a3ed9a6fe7c8a82fe62387eda217478f2509f6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Who is looking for the next Mooncake?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-27T18:07:30.923040526Z", + "creator": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "id": "2eb7823b3ce3d59ba63e0bb06d09b6a47b8f4f2d8414a3e7f6c1108fa8bba714", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmawiHgz6tx8PwJhGwAKzc43688caeYFpvu8wVU66CqBeT?filename=www.jpg" + } + ], + "message": "UBIK", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-17T20:10:11.306Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "2ebca8d1ad44239ce73692d806c62dd5cc7a53447b928e299d70b286490024dd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Do you know the story of `Mooncake` 🥮 ?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-18T04:43:59.287109739Z", + "creator": "desmos1up5dvafqg8whkf8e37z5yz47zd50fl3cpwj87u", + "id": "2ebeac735fbc1be6aa850ff98c3750aa749616a528ccb5add9c6293a11ac3f93", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos", + "parent_id": "", + "subspace": "89b95d1d9870fcec00dee38f69f2abf42248d1dabdf1f8b09215bdb4827df286" + }, + { + "allows_comments": true, + "created": "2020-02-05T12:06:03.401Z", + "creator": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "id": "2f1391bca7d9cee43ccd5e1c76a27e9b5d182536d89d1e6138098d844bbb58fa", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It's a bomb bakery....ina Dapp. ", + "parent_id": "bc95556ae56b5d534e61f007b07a33047842fd0e978ec47aa0471e5cf9fe3213", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-16T16:03:53.375743Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "3076bd5bddf2d6757eb41812d220c752baadcaaaca452202461d1b2f924bff53", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Still here! :fire:", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": false, + "created": "2019-12-27T13:13:04.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "32a1391342f6a19767d2329b4aa781c1b75465e021f3c6cac165ed7788893b04", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yes of course it's accepted! You need to escape it when you send via CLI, like this `This is an exclamation mark \\!`", + "parent_id": "38ec27b2ed048f7c2569d741817fb5fdf8fdcd386146cea2f06a1133d5ebe5a8", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-21T08:19:25.253Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "3418060eb74945f02acf413568c94c2ae192eaa24db9ffedcb3ebeb202cd88f9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Wonderful!", + "parent_id": "b8e870750b3210061dfe5d12af71481badac7744c48e4979e4fbce725e9ae1c1", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-02-04T13:26:19.172Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "34938b0b4a427664a9b496323c79fcf2712492b51dbdac33aad0038e94a04a68", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing a post without comments", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T06:17:37.532686367Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "352a133077e5b3a179b7e6cbf1ea6660a52b5ea51df276127f116bd53d0d11ff", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Coronavirus", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-26T11:33:00.260503952Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Very" + }, + { + "id": "1", + "text": "Somewhat" + }, + { + "id": "2", + "text": "Neither" + }, + { + "id": "3", + "text": "Not" + }, + { + "id": "4", + "text": "Not" + } + ], + "question": "How concerned are you personally about the 'coronavirus' spreading around the world including the India?" + }, + "subspace": "60EB893B5B5EEB236C5600E6ED157720F5389CF9B02F5266D6863CBF98B560B0" + }, + { + "allows_comments": true, + "created": "2020-01-22T10:20:20.740858305Z", + "creator": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "id": "35d7d90c264a3632203b28d453c2940f495b9f98d5277ebc6398ec641b3be464", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World, this is test message... ", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": true, + "created": "2020-01-18T23:12:38.745235775Z", + "creator": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "id": "36616f40467d40793d05a00c484f3e275da6a2c6fac0ae14c75c22deab7cece3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Ubik is here", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-14T09:21:34.946Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "3736467c59e31fd2b7bc9bdb043600cc957d59d28ee9e91476e192b28bd1941c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“Let me issue and control a nation’s money and I care not who writes the laws.”", + "parent_id": "9f987ed708effba136abfb2c62b2891920dfa72d23b74086fcc5364ccaf084c5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-28T08:29:09.994Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "37377051b9eac59c8636d0890b2023b94b9a079633553e37e3080c9a7864db9d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "good morning 😃", + "parent_id": "f4adc73d852a7ac3bec63fea227140ebf8f6e4d7ca2e66080e27a3add6d88c57", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-20T15:21:34.622Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "38b957c4324cb3402bb4ce7d9925d0d535fece27edeabd13fe200066465cd572", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmNTDt2xnQGk8BWk2VPRWt9ERRTr3qbeT2EmXNS9qFT5Dm" + } + ], + "message": "Italian's home made meringues! ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-19T07:10:19.03384Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "38ec27b2ed048f7c2569d741817fb5fdf8fdcd386146cea2f06a1133d5ebe5a8", + "last_edited": "2019-12-30T02:28:19.03384Z", + "message": "Hey there, this is SaiSunkari19.!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:43:09.496Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "3918bcdd8f81e4c4c21810bc63a10a51d9674d0a83d71606954be2a5f0e7977b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "The first decentralized Carbonara PogChamp", + "parent_id": "e22788aef84797225c7c8d8ec8d1626d427aa8b1cac0536213f0dc86b388a4cb", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-01T08:04:02.199093026Z", + "creator": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "id": "3a327cbd89f67a5a29aa4c730a46afe28e5e1ee1c038323ee98ec5eba08b6f81", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:51:12.753Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "3a59a129b85dfde470d7ecefa495c81ae483b7fae5c28fa03d5412c74e546d70", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmeWcpMGbSqmwe7sYdN5Cis4pj5U9VhPd1bLb1zUAck6b8" + } + ], + "message": "Tell your dog I say hi 🥰", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-09T13:27:47.012334993Z", + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "id": "3ae7c5153d924be522f650a0b0f08adc7041e109fc72ec2f93087b5f5e5068ca", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmUpiphnVgTVniTfG8wBPtge4obynT7odbbz7L62YyiSXv" + } + ], + "message": "Cyberili Logo", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-19T23:26:34.03384Z", + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "id": "3b5746dddc1beeda81000364994854e910457784a6a931fc5baa57f57ab749a0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Glad to be there", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-19T19:09:23.849Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "3b69f438ea55beb1a1bdb857adc22c7cac9c7744420af4264c53eb2f19c61877", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Vamos al Sol", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T12:08:04.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "3d8e5d7ace7908d3c045e03b43562fac7618a179d92bb4f7fcba0c2a707025b5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a local post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T13:40:23.382177" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-26T04:42:10.889Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "3e7bfc831ce2585a472f7a16c6ae42549d01b0b9e7114a898748a2032b4cb9be", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This Mooncake is smooth! I'm happy! 😁", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-24T10:09:00.247Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "3e7dfbea6871bb86cf371dd51ff3ad9f05c9bf762bbe6874d8c4dc106c90e0a5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "You can’t wake a person who is pretending to be asleep.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-17T08:16:34.758Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "3e85c459aebf39f2f2a48cb3da04abdf3c85d32249c66111e61f6d7af0681140", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post from 🥮 0.0.2! ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-04T10:25:11.829947758Z", + "creator": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "id": "3f87b71dd5fa6825b09ece9940c0efd5e8cca21998e5fde92bc759b6df211219", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmQS6GRmgk9Jgp57DJvYZcL7EXy8TTBfPJKmRQL2w6jXPq?filename=desmos.jpeg" + } + ], + "message": "Desmos Challenge", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2020-03-03T11:40:06.993917282Z", + "creator": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "id": "4148f70432c8d9384362e18a0b729677d142a0d36fbd588402c5aa0ea14fb578", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmSnR3NACfTXyHZztc7D1aZNB1v5CiroYmhScFXk21WKgt?filename=180831-aztec1-full.jpg" + } + ], + "message": "First photo", + "parent_id": "", + "subspace": "C292755FCD57F7284BE5962C3AB6C7F2150B6527E9D9DE56EF9317A2A20DFC33" + }, + { + "allows_comments": true, + "created": "2020-04-21T07:53:41.429Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmVNpFZHYDUQGvFM92WAxep31ftjvq9XtdKugPCB3mrkDr" + } + ], + "message": "(≧ω≦)/🌹🌹", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-10T19:07:54.579280803Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "41b9c2bc13fb40b57a4fb99000f37467b982ac78011af504df612f874276eece", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-12T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "No" + }, + { + "id": "2", + "text": "Difficult to answer" + } + ], + "question": "Is the earth round?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-13T13:42:08.549Z", + "creator": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "id": "4309738299505c01a459506da086e278d0ea958c62d5fc7f052e91cbf6754679", + "last_edited": "0001-01-01T00:00:00Z", + "message": "test", + "parent_id": "fcf0fa07c23cb2010449c4780e7747037b365074e1767f1694a2ab0c7058bf24", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-21T22:36:14.03384Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "434001acd4cf08c7da7911df697af6a238fe6575beed1a072ec6de154a16344a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Merry Christmas, all!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-26T08:14:24.783200913Z", + "creator": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "id": "43783290788fc41bea6673c3fe815f735ea6f7c6c84c14784e742bc94942f637", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-22T03:37:14.116Z", + "creator": "desmos16t9r5jjqczc6xrr5hjahwsmu58e6ghfng58dau", + "id": "43af5579eb26ccf06a5e5a1ce050ed21b29fcd963a9c88c02be73b1bcedeaf9c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "long live the cosmos", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-22T14:02:23.48212Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "43cd7f7ff50c8a96a04045f8e4771e359d21716d615b9d17c8de3b1c4b7f9fa0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello, human! This is a test reply.", + "parent_id": "35d7d90c264a3632203b28d453c2940f495b9f98d5277ebc6398ec641b3be464", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-21T11:18:24.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "440a0ff70ba5abb59f4217779e33692bae4715ec1f5d321ffef2099ae8c90ae5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-03T20:48:57.832297186Z", + "creator": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "id": "446f31d19ea069fa0a4f5d0651de96d1ac8e219b7c68490cbcf94dc3b0300c43", + "last_edited": "0001-01-01T00:00:00Z", + "message": "InchainWorks Poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-03-30T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Phase 1" + }, + { + "id": "1", + "text": "Phase 2" + }, + { + "id": "2", + "text": "Phase 3" + } + ], + "question": "Which desmos testnet phases have you participated in?" + }, + "subspace": "cf97572cb8b4646747fcd6ec37bd5a644e04dcd9a87b64d6832fc44ea4fea73d" + }, + { + "allows_comments": true, + "created": "2020-05-06T11:42:01.656Z", + "creator": "desmos1ms5u9h6zqqgl2n7wsy22vm0vxcn5yknpulkx8g", + "id": "44ef0b9c658b899cfd01aa559aad3a38515c5cb43a089b5169f85ba724f6dd39", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Test", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-07T09:05:00.168Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "450765445de8d8ab89b49bd899a5882aefc6e76bb882dee1923047c4e7d8d1d2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Sad but true. It’s all because of the selfishness of the Chinese government and the rich people. It’s not just affecting the national interests of China but the whole world now.", + "parent_id": "613fc3568b418879705644036b972cd0fa99cfbfc887a7416deb3136bce7deee", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T15:30:50.265Z", + "creator": "desmos13fndfmnd359up5r4qpdkgv8ewt8syjmxvmdha3", + "id": "450c0ece224df91f313f5b59a2b7f62857745f7b01bda74119b572fe96861896", + "last_edited": "0001-01-01T00:00:00Z", + "message": "there s not enough contrast on the seed phrase page. anyway, i did it and after logging in iwonder what the icon on top right is. i tap and try and, ar oh, i’ve logged out and need to type seed words again", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T13:50:29.143Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "4618b62d42062df82a025ae0ed71829ba5c93523bbb99b3bed8c042099fe06c9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Who's ready to get some cake? 🎂", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-03T10:30:19.848Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "4675d63e1d8c92937ea07096cb8df7bc9f1c74e709ce3b11c45324ae4f4d6635", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmXhhE3HMUhaB1y2ZhgyMvQjYRvH2wQBTbg4zTiWsQFarN" + } + ], + "message": "Lol", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-19T22:45:14.779472513Z", + "creator": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "id": "469a63694b6c9548d7f6183a745081b91e380de1d14aa863abdf10333ff1db12", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World, from Bambarello!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-04T02:37:03.375289432Z", + "creator": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "id": "46a862c166f1c9fe541e42e0c1c1aa9adf8aa812ec90076aec4322b25f9f59b5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-20T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "yes" + }, + { + "id": "1", + "text": "no" + } + ], + "question": "Do you want to play everyday?" + }, + "subspace": "663ef20d8f790fafc23cc580542c553135232b1cb0e71adc58b3af79147dd994" + }, + { + "allows_comments": true, + "created": "2020-03-10T10:49:40.389Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "46ac1fcfd7dff5f5c78a7fb6beef931ea6d4a32b63d5d072132841bf9679633d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It will be in the next version. Stay tuned.", + "parent_id": "b98b2b021a93f16e04031c4d4014e80aef721f859afb87030162fb481fd42a18", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-19T07:13:59.03384Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "471b9488ac573227538e2fbe6c522f74996f50266c491fea871df1a8ad7c8be2", + "last_edited": "2019-12-30T02:34:34.03384Z", + "message": "Hello world. Hey there, this is SaiSunkari19.", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-03T16:58:11.356327972Z", + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "id": "48cd7144d6c3280be5020cb8d40812894edf859dc7645c907cb9313a627f7050", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post mit Umfrage", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-13T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Beagle" + }, + { + "id": "1", + "text": "Mops" + }, + { + "id": "2", + "text": "Schäferhund" + } + ], + "question": "Welchen Hund bevorzugen Sie?" + }, + "subspace": "e73be83466599b149ef5351e8eaac1bf66281c5a603fc55dc859274fdec925c9" + }, + { + "allows_comments": true, + "created": "2020-01-20T12:37:29.422Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "497909425ea58a30e4c0693b539061ef1f61e5332931709bcd120f6ffd3b0a94", + "last_edited": "0001-01-01T00:00:00Z", + "message": "1", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:21:28.645901948Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "49af88296e8269a909e6d9bb37c34037ee86baeb17235004a5ee97882e6383e3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is taking so long", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-01T09:18:48.905Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "4b6629a4f4169e865b26b97feb30ceed52fa214fb12341c496e9154ae0373e58", + "last_edited": "0001-01-01T00:00:00Z", + "message": "When I was small, and Christmas trees were tall\nDo do do do do do do do do...", + "parent_id": "b40ddce10b03ee9c1a740b75b56255ea6e00ee5231eb59346bef337f0a45612e", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T11:28:41.869505647Z", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "id": "4c3005016d2cfe2549ec64e4609e475c0f7686c8eda088b946fb694757b5a3ab", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmaKnZ1CcBwR1NpoREqQMLcqCWdTamSsjUwyauYmr3Hs1K?filename=blockchain_network.jpg" + } + ], + "message": "Future is already here", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2019-12-11T08:07:39.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "4c78b0805ace9f7812ab6274be193a8bdd92e57618ffece41787bd4d695c9c3f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Welcome to Desmos", + "optional_data": { + "external_reference": "dwitter-2019-12-13T09:11:41.036114" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-27T10:32:32.636Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "4cb48fdecb39e736588aa342e3838a37f379b3308ccd1dc5d347ee159213cbea", + "last_edited": "0001-01-01T00:00:00Z", + "message": "yeah okay it's just SARS+Ebola+aids \n\nbats, I'm sure. \n\nhttps://ipfs.eternum.io/ipfs/QmeDTdU2UWCXnexd1yvY8sPJMZdt6gkjLmSh57XkgaWAcz", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T18:07:08.997Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "4cbcec8615dd6cea250629b8b585588ff0aa9c640ac63de6b4701029a9b5cd74", + "last_edited": "0001-01-01T00:00:00Z", + "message": "rumors can be propagated but stopped by wise people", + "parent_id": "e73d391ee8e0daec8378747ccf1ab947d489182bf172496a9609492cebbe67a0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-02T14:16:24.254809591Z", + "creator": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "id": "4cea3a170718b2cb9867bc50f7d4c9f2318339263f1bea94e09690a16cc13149", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "Absolutely" + }, + { + "id": "2", + "text": "Definitely" + } + ], + "question": "Is Desmos a great netowrk?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-03T13:07:57.559Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "4d73e10a5772a1bf4a467888f176a16c2388d23f49c8dde80c52da9b473ae03f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "that was much fast! my Mooncake is alive!!!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T21:21:00.589Z", + "creator": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "id": "4db5e08a4243cef25bcd8c76d81b7d5518f0f3c81a8eda1b41d4aa5bccb8d866", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmVu8oZmi3qgWokZBrAtjMGcv4VrSNXCiUCUbRFTysJ2Rd" + } + ], + "message": "how about some kilos of Lasagna? 🇮🇹🔥😏", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:18:34.887Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "4e58d27ca79d7a6fe115b1165010298c5fb9753d70e91b476ed8437466bfccf3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a test", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-15T10:33:19.982Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "4f5f4e36ef510417471d7c78d18be3a5f544e80d0cba43fd0b72185916e101f6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello!", + "parent_id": "086ff8d0f275a0c54e871c54045254cbb029ba684d70826c516c75cb90a0195d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-04-03T18:34:34.382298745Z", + "creator": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "id": "4facff6e76c408f0a98f23654547703ae609b01b80527eca4608ce3869969e4b", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/Qmc2AL4JkPRe62NH9XoxbmnYskVh96WX9w7Kz6HTAN5tzG" + } + ], + "message": "I am King!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-30T01:02:54.03384Z", + "creator": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "id": "4fdd46ccb4b1c2ee761968a8d59ad5396959264ee1b1b968da38c429780fac0e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-10T07:30:31.544Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "50dcda9d43bd92b40f047c4905eb59840d0c088fdcc40ffc563a4366296ae501", + "last_edited": "0001-01-01T00:00:00Z", + "message": "You may create a Poll", + "parent_id": "189ff858bf24feaadb331dca4a185c3332e3f931a148dd1683eac871cb15ed34", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-20T07:34:26.620376946Z", + "creator": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "id": "5167ad329eafd39296e0613c6af76f902668b19cbf6c9e1ba3a4da8ff3b74969", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Dummy reply", + "parent_id": "613fc3568b418879705644036b972cd0fa99cfbfc887a7416deb3136bce7deee", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-12T02:04:28.117Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "517f74af9ac94c1cdac62b51186d757b708a823c9d60676ddc3c6cc3f8186c9c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yeah. Complexity will create barrier for new users to join. ", + "parent_id": "ab822d65a635cbfdda18a2f3ff04fadb775696896f4ffc160098ba8e7dbff86f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-31T11:07:38.446996026Z", + "creator": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "id": "519213999810445110bdafb80a6b5c12dea3cc0d3a68dd1f972fb5816c4eebdd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Coronavirus", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-05T11:08:00.260503952Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Very concerned" + }, + { + "id": "1", + "text": "Somewhat concerned" + }, + { + "id": "2", + "text": "Neither concerned nor unconcerned" + }, + { + "id": "3", + "text": "Not very concerned" + }, + { + "id": "4", + "text": "Not at all concerned" + } + ], + "question": "How concerned are you personally about the 'coronavirus' spreading around the world including the India?" + }, + "subspace": "B0E752557545591C147EEB4AD1E5C40C48A7CC1155CC1586EC3E07E874A95099" + }, + { + "allows_comments": true, + "created": "2020-03-08T05:40:41.756235054Z", + "creator": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "id": "51c7f17dc7342451e98b2c0f143a6930b22a6f95e443c24f966071a57886c48b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What was the highest price of BTC?", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "20000$" + }, + { + "id": "1", + "text": "10000$" + }, + { + "id": "2", + "text": "250000$" + } + ], + "question": "What was the highest price of BTC?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-29T12:55:37.306Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "55247d5cc84e8817a97379ffdd870de8e29673688735f64623b1e020c077a4ab", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing comment on the testing post", + "parent_id": "0c2e8316058d55c48750219e38f37538173b69d33e93ddf9eccd6248ba5dcbc2", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-30T02:27:31.878651079Z", + "creator": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "id": "5613ba6047ecfe017d63b0ec400f12e27708f77b6a369c9b80474bea5c74df4d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2019-12-11T12:45:09.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "566d32835a978c993e686fa20fad30c4d9491bc14a2f2a1a5e9c89db38d0cfc6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Tryout", + "optional_data": { + "external_reference": "dwitter-2019-12-13T14:21:37.998833" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-06T14:39:37.544819963Z", + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "id": "56ff9b0ba29fee2460130ad841d78607f5d825f8e169679e018a75218501c3a3", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.io/ipfs/QmaAN37h1RErvMmdBrsX7bEuRxN6vjUNox1jR8gKLZfPbA?filename=testnet.png" + } + ], + "message": "New testnet coming sooooon", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-18T05:32:45.166162902Z", + "creator": "desmos1amff90quajzsl4929t9dmqyplkqu5efmtcc6pc", + "id": "57b8bdcce250124a0e1cefd56f0c7eae6e377a6ee2afee4f292a0d879570e931", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello Desmos!", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": true, + "created": "2020-04-16T14:23:05.715Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "581845695dad7c2950eee1b9908e1567f500d625d9343348a5363f99a1c6122a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "you are very welcome!!", + "parent_id": "aa7e8e4dbbf8a1accb4506ec10779c7698ffb6e9ab5b1cccf3194c750f36d189", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-19T12:41:31.585Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "5844e8f8c37a93a5f4bc3115e553e4ad707e324d6c4c1b98ffda9ef9ee5254bb", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing again", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T08:32:48.360004178Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "59235f11dac3f7af2237ac1a325e4fb216fcb753f8f6c4ca71f004286bc1dd22", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Crypto Assets", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "0" + }, + { + "id": "1", + "text": "1 to 5" + }, + { + "id": "2", + "text": "6 or more" + } + ], + "question": "How many crypto currencies do you have right now?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-23T20:54:34.03384Z", + "creator": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "id": "59805b9c4a4384a5d305bd02c7f847b3be04ab2df24985d9e49f5b435a6b62b4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-23T09:44:49.732Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "59b2c45b56dfe98a4f181def79e5a404a86d731bf9ddee55cf6d3aa345a1a571", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello guys! Nice to see you here! 😎", + "parent_id": "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-06T15:41:17.054Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "5a5862d7c66756cefe8c6260a34229ab7ea226a26080cffbc1d4b4fecd14ed85", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmQV6zYGx8g1CUjQ1pcT67ZtqL7QRp9NpvrntiLj2UT3g6" + } + ], + "message": "Ready to bottle Prosecco Wine! 🇮🇹🥂", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-02T08:03:03.783Z", + "creator": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "id": "5afe57f19645ace0e9bc489d192dfbf8bdc06ab8fc84eafee5c08fe1828fe81d", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmbxjYoHVduGSPZRuwxNJWRuoF8G81hVx1zMon85yZKsok" + } + ], + "message": "join in! \nhttps://primer.desmos.network/phase-4/", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T14:13:45.402876365Z", + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "id": "5cc924a902a98222a2f51871d59f8c6afeb08b011f90f224a0b10d2e1232c969", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Greetings from Germany", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-16T08:55:49.528507268Z", + "creator": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "id": "5dcf020aab00542a99c123fedcbbf2c83bca0a412a9b7179bfe1d11d387817b6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-28T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "No" + } + ], + "question": "Will Bitcoin reach 20000usd in 2020?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-14T06:04:02.451Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "5ecbd6276d7f6b86308bb68cf113306177e30b56564596ceadacfb5b27e08bf8", + "last_edited": "0001-01-01T00:00:00Z", + "message": "And stay healthy! 👏🏻👏🏻👏🏻", + "parent_id": "14ad7302350e596a757e305b0e3f274d84d2b5e39a5bb10ddaa2d2697aa41048", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T12:12:20.465Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "5f9aeae04b11e20fdf3caae7f2aec3a0fe7622344549af011883ae1cd3d2b51a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I agree that rep and reward should be separated. rep is like a historical record but it should not influence your rewards from current contributions. I’m thinking if rep can be used to “redeem” some NFT like badges.", + "parent_id": "d204e1be53558d9d57640d0b093fca5facb50048188a4e3c476c0fa32835187f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T14:28:06.826Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "613fc3568b418879705644036b972cd0fa99cfbfc887a7416deb3136bce7deee", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Why many of the viruses originate in mainland China? A nice YouTube video here: https://www.youtube.com/watch?v=TPpoJGYlW54", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-16T18:57:29.03384Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "642a08f92b9f190e427f43a00e30832b83b8f6cef5494fcd5621450aefa54443", + "last_edited": "2020-01-02T02:25:34.03384Z", + "message": "trying editing 2", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-08T11:16:45.607Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "643f78c9084602731710be5c37b01b90c7aa1de496fc5c3a7bb53874bb34905d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It’s Live!!", + "parent_id": "e2c651aec74109c88a6bfa770f76eea368b506896c9b9c0c7532a48243bb384a", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T17:16:25.444Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "6485d8b4d1fc82896411886b32fce814112797b2f27fb683b73bb2a3ddeebd53", + "last_edited": "0001-01-01T00:00:00Z", + "message": "speak freely\n\nbreathe freely", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-30T08:05:46.992Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "64d6a0562f599a1ebf799748f2ba3c2b27e9b340f59a4d9bbd765940402e00bd", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmPKQBed922AEDThJ3pVeJPk7B4hm9z8uJxzg4v8EHZGhb" + } + ], + "message": "A good read from one of the best italian's physicist, \"The order of time\" explain in a visceral way what really the time is, making your normal time conception fall off like a house of cards", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T15:40:31.149Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "6503fef2a7553d1f16c1722bd5e9ffc385bc6a2c4924f4172ac5e022d316d0d7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Nice. 🥰 oh no I don’t eat beef 😰 So, bleah", + "parent_id": "79e103fb576a0897012b55a1b2b37b15bc0e83872324c01b3ce65e0df57e1891", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-24T06:31:14.03384Z", + "creator": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "id": "657845afdc3f029bc8b3c83e263bd77c179bff67f78ec687370ac7eef459ce5f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-11T07:20:05.211Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "6620f5a1435fa64906810b9748cb3bff863a5c6601bef76959a2950f22a0bf20", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“If you take from one person, it’s called stealing. If you take from many, it’s called research.” - Tony Bennett", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T01:25:36.556Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "66a5d9283c2b556c909b7cc998443bc31d2a1817a780939335a07be084dd3a9d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“The only thing you can get without working is poverty.”", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T12:44:28.96130812Z", + "creator": "desmos1gravcjq3t98upzlf2rn74nzml5262ln4y2dlfh", + "id": "66daae459a2c1e911f4ae234365728c0f108c2de0cad79a937095d9db3e9db33", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Join desmos on discord", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-21T09:57:28.526Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "67df057f87c9a425bfaec22d3d06eed5d7e276d2a22c9da1763b921301e6551d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "(,,•́ . •̀,,)", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-04T09:29:25.070838777Z", + "creator": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "id": "68110d51aab400b6d1ce79f465475060e5fcc6b21e051684b2afd56e48cd68c7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Start of Game of Stakes?", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-03-31T11:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "in the next 4 weeks" + }, + { + "id": "1", + "text": "at christmas time" + }, + { + "id": "2", + "text": "when https://github.com/cosmos/gaia/issues/201 is closed" + } + ], + "question": "When will the game (GoS) start?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-18T05:01:59.468007474Z", + "creator": "desmos1w8k4qyg395jkdf4lrrpkx47ncapvsszvhehdv5", + "id": "683883159ce4229b3d03e267e52b2e450436ec1b00eea909e677eed3747147b7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-29T19:05:18.737Z", + "creator": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "id": "685573a9106221eb114dc232912475866aa3602fc7868cdb86f2cfda07e82513", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmX1SbsUSHzwURKRK8xKZsq1x7p5TTJDUJfCgG4Si6cUnG" + } + ], + "message": "flamingos", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-25T14:28:30.611Z", + "creator": "desmos14jhgygqh2nf8d2hqzp9pq7z7z7pu7expen3pvy", + "id": "68795490973ad268b8c55f04a422a87ea9bc1386356883dbcab935b3c4e7094f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "have a nice weekend mooncake family 🤗❤️", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-27T18:35:04.03384Z", + "creator": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "id": "68e2dad01c64164b7187615e0fa569792d65a7155d8f0456c6ceae6e69612fad", + "last_edited": "0001-01-01T00:00:00Z", + "message": "DEStroy MOdern Slavery in 2020", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-05T11:55:06.042Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "69312b328da061fdd21187fc0965e87a33a836266ac74d6be8f7e995dce79694", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“Good artists copy, great artists steal.”", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T15:07:03.769Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "69a801fd25f75ae8cad2349ddd3481922d7ff2dbd385b809286a2a72717bde07", + "last_edited": "0001-01-01T00:00:00Z", + "message": "👏🏻", + "parent_id": "78c88265fa17cb2d75f0ed098b3289b3270f3ea07b505e12d1fd191f50f0503d", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T08:32:07.491196989Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "69f5f48656eed08da77c6669ba89bbc9c3a1eba3c01518fffcc68808e2f79349", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Travel", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "0" + }, + { + "id": "1", + "text": "1 to 5" + }, + { + "id": "2", + "text": "6 or more" + } + ], + "question": "How many crypto currencies do you have right now?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-27T17:37:57.450405962Z", + "creator": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "id": "6a2d7b53a1fb31cdd57b5542aa36d91feb17a09dab6ed0a043d7cd6a704f40da", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-05-01T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Red pill" + }, + { + "id": "1", + "text": "Blue pill" + } + ], + "question": "What pill do you choose?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-04T08:46:03.372Z", + "creator": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "id": "6ac40a61ca0385da70868522fe9368c12b293456e8ea621c73082422978e7132", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Suh dude", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:23:42.242104746Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "6adf0a2476ce48e149773beb758452723ade0305e4fc2cbd363aad584b08e2ee", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Has this every worked?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-11T07:28:31.267Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "6cee81830fa2248e68892afb4bdb30c0445bb0066dcf668fe341d0b57701cb2c", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmZ9vBQ5JAvzTTUBSeFFf1JzsGFeaDs8VfhPMXwXKcwUnp" + } + ], + "message": "This is the real meaning of crossover 😎", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T12:44:51.333Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "6dce3042b92da30dd1521461ef97c8b1e8df55a2d820960fdaa7b4e6f4909df7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "1", + "parent_id": "19c7743df7971ad74115bf3a7f0e5d1b551de330de3dc08e521f8825cc31be0f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T09:17:01.393Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "6e7c47b9d0912211f4f61d3e56c81c3fdc0307d95f8286a8b0f58d391637023d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Test", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T05:24:45.067Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "6ec77ad0767442cb31d20b3cc120007058eaa2a64d25f936ed2d00bebe855664", + "last_edited": "0001-01-01T00:00:00Z", + "message": "May the mask be with you 😷", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-10T09:47:00.197Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "704fe60bff2a45d4425bb447f4404a4f8a18c653568930e977f1c2f1b93c2063", + "last_edited": "0001-01-01T00:00:00Z", + "message": "When we can speak freely\n\nWe will be able to breathe freely, too", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T06:47:45.005Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "70fd47f89bf8a0c3aab32eb9d41717c94b4f3a412845a0bdb33623062e07b14d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Alert COVID-19 everyone ! It is madness !!!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-04T16:07:44.561Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "712e7c212367ee83f093c1c95e0297513fd51d7538a89b263aa135b9de2b7190", + "last_edited": "0001-01-01T00:00:00Z", + "message": "No why?", + "parent_id": "aa6f0e3e11a5a6aefd855e2cdb7ebeb771806c0cffe75c8f5b9bb134d5a252f5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-30T05:45:13.969Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "71e6f45ee2fe7c70db6712c948f3f34f91bcf390c5474ec60218c129ea821409", + "last_edited": "0001-01-01T00:00:00Z", + "message": "dbbvv", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-30T20:59:31.588691082Z", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "id": "727a6e8bb21f50e89bb9eff1f46c4bebf15d0392dd4efd7dadb0cfd4fd1b7d9e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you for the invitation :)", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-31T09:36:32.868472386Z", + "creator": "desmos1ft37z3kv89mtc2qzyudvmhkakeyje6kuwda29y", + "id": "73e3bd28577b0db77b06985305a3ab97ca536bd0147edc22bcff86d44bc10aba", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi, desmos", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-06T14:27:31.838287512Z", + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "id": "74862c12e0cf1d5281e6f96eade704c31a8a34a010b30fc39f53cb674453fac2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "New poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-15T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "YES" + }, + { + "id": "1", + "text": "No" + } + ], + "question": "ready for next phase?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-04T07:10:20.084Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "74eae8e1c3165bea6007fcb8b01c18fffdb9d631c26175beb317016700afe3ef", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Have a good day! 😁", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T07:58:49.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "76516dcb5a0a160c631f9b070b2330c82d2a965b4e1657ad576aebb33b98d6de", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T08:51:32.262217" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-30T09:08:03.746Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "76597beaa2698925b5b30fd991d3e8f720fa1a0234ffc6549b61948917ee5bd7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Why people celebrate Buddha and Jesus birthday?", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-15T08:27:47.958Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "77433b270369d6084125107f0fa9c815dac95a7550833e9a269c6086361f6fe9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🎉🎉🎉", + "parent_id": "c59fc8486bbf8adaeaa2648b55ef6a14f60c28dc3b136fe8bc3f117b0ad756c4", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-16T23:45:01.226Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "775e87dbe5d90c1a62e8452baca6473bbf00de8851b288c70d0ef7a8af81258c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "sick kids make sad dads", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T09:34:49.193358815Z", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "id": "78b1c48557424fc8b47aa228e71e1b4b526b7efe10c63378a6e5ac828f1ac0e5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-01T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Centos" + }, + { + "id": "1", + "text": "Debian" + }, + { + "id": "2", + "text": "Ubuntu" + } + ], + "question": "Which OS do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-27T09:28:26.986Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "78c88265fa17cb2d75f0ed098b3289b3270f3ea07b505e12d1fd191f50f0503d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi mooncake's users! Are you enjoying mooncake so far? What feature can't miss in mooncake?", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-30T10:03:30.925Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "791c5b4649d2255736a55875adcd621cedfa700f26ab603b16db1b304438e4cc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Posting with the latest UI 🤩", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T15:02:30.048Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "79e103fb576a0897012b55a1b2b37b15bc0e83872324c01b3ce65e0df57e1891", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmeM3hQN4TPeCGCpVUmfm8gg4MCbjXKBv1GiMgbEQHX39J" + } + ], + "message": "Final result. 250g of burger 🤪", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-21T08:51:44.03384Z", + "creator": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "id": "7a23ef9435c62271e033902c92c1353ee6f55dc81ae5de4b7bdcee858ee04814", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-14T16:46:07.891Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "7a43622d662878cca273cc378e1b7df66d993da81a1a3bbbf61d4d2daf1988cc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yes it is!! 💪🏻", + "parent_id": "2127c22bf7b9ef01aa816f17e4c52a03e3091c2ea2e8650e2c112ba137c9f1a8", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-01-22T07:52:14.719546Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "7b754afb11fdb55d6a8de724bc563081ff40fa9095276c1c4ee8ef363533b2dc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "There are too many shit already. Let\\'s do something great together.", + "parent_id": "c96944fbc5e0290bbd9b535d07152987eb1df941ad310bb8cedf38c2ab47344c", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-17T14:47:15.523Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "7c161934ef3ffcef319d11c70ef123f15618a5001b03f6a6261840caf6262b59", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmRbVafQP1kY3z9QkM58DQQeuKTRsrMzNEoSfX2caDSZDT" + }, + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmTQxa27P5qeS29BkFFzSbr7Qo1rSx8JwNXpCBLtFSqkfd" + } + ], + "message": "Burgers from scratch #2 and #3", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-16T09:07:48.736106294Z", + "creator": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "id": "7c4940d2e70d549cd374132d136d270243ff8d2a522d082485ad794fdce1cb8a", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmVaN9W37Xr5J1cLCQon6CjM65uenJBsDzrLwYA94tFWJp?filename=westaking.jpg" + } + ], + "message": "We are WeStaking", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-31T20:08:27.886230533Z", + "creator": "desmos1yqe66ky0v28wprdkxucdtehentypn3svyhfde5", + "id": "7e0595fe32620e7b97c955086b7db3b07025a966ae2121c2afc4c005652b9d46", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2019-12-11T07:58:34.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "7effc492b8d496f38649afbff3d75de2ca6db7f4b3e8d67876592bf00fdef2f2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T08:51:32.262217" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-29T13:18:28.673Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "7f5c48d35729296df36a51f3ba70fb7c60096e9fd1ad0ea0f4165a83ab8c30b2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "awesome!", + "parent_id": "1df8229ada2aeb6f31de5ad9d99d346fab6e1ca6467b0dd7218db33ca6590889", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-14T05:36:51.593Z", + "creator": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "id": "8006e0b6277a2aa5e44848dc811eda213bafaf77676c7b75e868287ee9255a1c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "v1.01", + "parent_id": "14ad7302350e596a757e305b0e3f274d84d2b5e39a5bb10ddaa2d2697aa41048", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-03T18:15:56.654471026Z", + "creator": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "id": "81160ce863272960fbf5a88a831e6f0a0bcdd3c02aad3989f98dee39ac53d007", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-04T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "To be" + }, + { + "id": "1", + "text": "Not to be" + } + ], + "question": "To be or not to be - Desmos?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-21T11:22:11.642320514Z", + "creator": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "id": "8251102ef8bb5d5275f7dfb502f5bf38534b423e2837ab0b4b05f8a129509f8b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Bi23 focuses on the blockchain and crypto-assets,providing users with Staking and DeFi services.", + "parent_id": "", + "subspace": "601af7eb15aafa4ad5f927797808923d5b42a5baa2cfad5286c6831ae556c560" + }, + { + "allows_comments": false, + "created": "2020-04-03T19:32:25.52016578Z", + "creator": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "id": "825ad8d07e97409691f3d0d03dddf3e16059c7858f5538a9e7e405878aade953", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmSfcTrWi6ZqJmdSUVBejBVfMMnhUod5GJo4nbH6Uqfb2W" + } + ], + "message": "Don't worry, be happy!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2020-03-09T12:35:31.246113202Z", + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "id": "8305b8fc6ff13e124e20c06d5e39c40dc92aebfea5c3ab29532845d4608d7b10", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmT4vbm2URB3KQgaSiqA38DfxqQ8w5SVvzNEZuPBaGCDLf" + } + ], + "message": "ChainodeTech Logo", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-13T19:46:03.778Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "855e64ed5de045c872b39d250c711d56f92a880648366a0b20e5216c212b7821", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I'm excited about the just released v1 of the Status App. Super secure, distributed p2p messaging. It's eth but amazing status.im/get", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-04-03T18:56:01.520683071Z", + "creator": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "id": "857e16a104b1a7fb52eb780e2767e34fb0b069b890f71445f22b049375c8c9d2", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmY8NK6Je8y59A6fRx7mLtjSw8RpsxvowKfYEWbRusHWW5" + } + ], + "message": "It's Andromeda!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-03T13:10:46.907Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "86805590e6d83c6567ea9cc2f9d2c562be8b3d64cf84cf1af4decd71232b4ef9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "censorship resistant social media is a crucial tool for protecting human health.\n\nSpeak freely, breathe freely", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-20T11:57:14.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "869251b793f5aa8284e9e681e77da520b821712b98d3129dda3b27b75c9a8383", + "last_edited": "0001-01-01T00:00:00Z", + "message": "\u003cMessage\u003e", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-27T00:38:24.03384Z", + "creator": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "id": "870e2ac5b1dc16ab4f914aa0e7db7278539825674466ab4ef2f75843c63bb7ef", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Destroy Modern Slavery", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-30T01:03:09.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "8720cc7a0855700c1b7c6d01428b86879abbb766eb6231f9d461ccdcd94faa7c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy BC11! 🎉", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-05T09:56:24.544Z", + "creator": "desmos16narsgz9yhypm38unf48mp57y3z589d7zpcqwd", + "id": "8735c82dc59313ddaf6c72670beef2a4c0b4eb8dbd3cc5536647f7268fee9759", + "last_edited": "0001-01-01T00:00:00Z", + "message": "ssup guys ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T08:49:29.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "882577de448634d2dfd5b656438c6a4307231bf7180441912833d71f7acbed18", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Another post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T09:55:02.160257" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:19:26.557706777Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "885798844313cd170c53dfce00de9aa4b860e1a9d39c7da4aa791f1c1e918a4f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Congrats e-Money on the launch! 🎉", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-15T18:37:31.713Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "88789a0fd6eb76daa63405c7d4d59460e97b02d11fd847a3a3c6896f6dc69d0c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hustle yall!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-25T10:10:48.909Z", + "creator": "desmos1ke9fmwrs26putztkqhlve7dn2xjft6xf0acyq6", + "id": "88efab187ad26133ab4ab63e35e1643ac652aa6abb512e78c20c387023efa2b5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "q ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-07T08:19:36.901Z", + "creator": "desmos130euf9e3k4w826dgnyzx4aex3lupqee5kz5qgl", + "id": "891e9102e4784b42c2eddfcdfcd53405c943ee6c3348c9fd813e6bbd033071c4", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmYX3JsWeN8g2Zm2LLZEHtfnXCUb6VrKJ9X11AwhjL2kna" + } + ], + "message": "劳动节快乐۹(・༥・´)و ‏̑̑", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T16:47:49.397Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "8b0469dbc9887c3b89212561ab95ad660da88326ac79e2c4e03f79e536029c55", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you for reporting this, we will try to fix it in the next release! ", + "parent_id": "450c0ece224df91f313f5b59a2b7f62857745f7b01bda74119b572fe96861896", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T10:01:32.474Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "8b9dd5515fbb5dfcfdceab40c0dd54255784a4e286b47e24b4011a53cec9e581", + "last_edited": "0001-01-01T00:00:00Z", + "message": "a", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T20:50:28.881751157Z", + "creator": "desmos1e8xaajgc0l5ftl5m5x390hg0enwjyd5pfyuf9g", + "id": "8c29b380549f3a6093266bb5f91016455ccc255ab735879e0887d7cde5937a0f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "👋", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-21T05:43:13.446Z", + "creator": "desmos1g4kc5llwyq3y423fa0gcy64rz4h58e36k4lc8e", + "id": "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92", + "last_edited": "0001-01-01T00:00:00Z", + "message": "X", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-04-03T20:06:20.490071607Z", + "creator": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "id": "8ce55e456f784fbd1312c6f2e7ab1af60d9f319eb36759c8d2c0ea73bfd27d67", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmVABgWakX1Bds515zfcPWwrW9pLCVaNHoYnL47e1kSnxn" + } + ], + "message": "Cat!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-22T03:37:42.682Z", + "creator": "desmos16t9r5jjqczc6xrr5hjahwsmu58e6ghfng58dau", + "id": "8d7af22f8907efd735d7bbdccb06fd58ce05ca0c9dac53f9e227a815cf00d646", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hi ", + "parent_id": "2955bece0e7e582ca0fc5ed5ccb652fb810ccb2167fc9059fc08530f709a896e", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T14:19:24.893Z", + "creator": "desmos1qs972ew3a8j9028wvxzyhq2yt3q9m5yc8h4h0e", + "id": "8ed9bc5d3079cdd9255e07305db5a02c2fd808df2cf662ba034128041539e561", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmVzrmb52WiamxLmdpY495cV1Bn5VbeRdeu6GJHECfqTgk" + } + ], + "message": "big picture testing", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-27T19:14:59.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "90b49a94388deeb7d01febd91885c7c99d10c6270dc649d865de34a02d851342", + "last_edited": "2019-12-27T19:18:04.03384Z", + "message": "![Welcome, to the real world](https://media1.giphy.com/media/JzzLFXnZt4aiI/giphy.gif?cid=790b7611db5de6f71c4798f6f21ed61e9d5ae261d6156821\u0026rid=giphy.gif)", + "parent_id": "68e2dad01c64164b7187615e0fa569792d65a7155d8f0456c6ceae6e69612fad", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-16T20:18:44.03384Z", + "creator": "desmos1mzwqlssv36gca9dfs4s837lnp7hcczqgswc60k", + "id": "928064ac74fd935819f95348c41ffc4ddd89fb0bf7ef436c8539c8ddf6de59c4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-27T09:04:06.566Z", + "creator": "desmos1n2m52yfq4hmk4e9p9493c28nt4fy4sqxvehxvf", + "id": "92e5797e81fc0652a071cc37bb54726602275716fbf928df45472ef314283a6c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "tFaf卜力翻F廿", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-02T15:15:55.603011707Z", + "creator": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "id": "9305e7e068d27c2fbef711221bfa12201ecd5d836fc21a0b50b3ea809852736f", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmbW4rRxm6TMD7dyb1VvF5tD9AH8UwShrmVphTfXiD2bgz?filename=SimplyStaking_desmos_image.jpg" + } + ], + "message": "Blue Orange", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-30T02:23:19.03384Z", + "creator": "desmos1l6ayl3wcvkpr5yn5a3tgqp3jv60quyxmrph2q0", + "id": "9412ceaa229b01dd9a291269a1678a4b46b0c88746565c7c72af39aac5741f8c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "dubito, ergo cogito, ergo sum", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-20T09:24:33.724Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "9499ab028566eefd3f878cb0f93f90bc9370de057dde8bf232b4c383984b82d6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "T", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-27T10:46:23.979Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "9525d4755f622f5862da632d6ca4b1e9a118399b4296f9f8f2b58fe1e54a7475", + "last_edited": "0001-01-01T00:00:00Z", + "message": "What exact", + "parent_id": "a10878ca7d7cb317449d3c44bd943e24f360f1d79065f6961a665e343be9f47a", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T13:47:06.891Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "95e0f2ed5e4abb2c3f681332ce99cdc501c6c5260e609c11f5658ab0f6ef9f76", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Mooncake v0.0.13 seem to have some problems 🤔", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-31T11:29:27.579976563Z", + "creator": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "id": "965b0632c8915064e504e0f9455b9d37e0b22e966bb373f90f54ff2d41dc238a", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.io/ipfs/QmePw1dXoaQ5VKRJTyswoW7Ji6SCnZ5p9sikVza9uapnP3?filename=cosmos_birthday.png" + } + ], + "message": "Hello World", + "parent_id": "", + "subspace": "60EB893B5B5EEB236C5600E6ED157720F5389CF9B02F5266D6863CBF98B560B0" + }, + { + "allows_comments": true, + "created": "2020-03-25T11:09:38.883Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "96b9855391e70dd240770c0759a32a78738b944299cefdf5d9f98586964c0601", + "last_edited": "0001-01-01T00:00:00Z", + "message": "dark mode looks good!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:20:48.401Z", + "creator": "desmos1muhg6t3yu0utfgde8tsf99m9t0nu57cd9vvmjf", + "id": "97089e51ef7170e306aa195ac3b72179f029ffb9d06797a46afbdcd74f21f362", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Free Tibet", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-22T10:12:41.071453006Z", + "creator": "desmos1n9l3kaexp56pdcc8ttpw4sgy3j36w8acxay3g7", + "id": "97286eb1572e13eec950e5439d09daf814155bdc5eceab64b8ceb94ad6e2c987", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-30T16:20:35.623Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "974d32500dd6600c5502da8014958478a1d257163112bc3abee937f6827187c0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "If they are believers, why they celebrate? Buddha abandoned his home and statues to make himself forget everything in the real life. Should people even record his birthday?", + "parent_id": "a81a220b942d45c2e88814bafd68fd71ae7ee3191b00dfb275694f96b9a92fd9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T11:40:47.196530755Z", + "creator": "desmos1ljmud4fjt766cneaz2xverm8rdlej20fhn9ejf", + "id": "97d9e9a60ba916658293d3acb80d20fa5940116649413b0ea4ee03a8d00f6d2f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello desmos", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-24T13:54:25.821697898Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "982dc804e8db2ed1b591e17c429f60f813228488a78ffaf93526a6e3963012cf", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Getting there", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T21:05:36.219Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "989b3456338d7738ccd41a798d93dd5cbbabe499126cf2a0e24de9ac082ac70e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hi Plabo!", + "parent_id": "24d80c82b3c05b97effe71077cc1d2e2c566058752104a81aa03292a50ae556f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T11:41:58.955Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "9a7d7e633e95299d8c171be1c4b80e2cc2f59ad4f7e6ed18a55a43d719ef9878", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmX2W3PuhzzHArWtc5his9kW1DpV8hxd664Uv6urqLFobB" + } + ], + "message": "Fuck you Italy, we don't want Corona Pizza! 🤮🍕🇮🇹😂", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T07:08:53.237920812Z", + "creator": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "id": "9aa2cfecd210260a7b28b96d445cd9e3eb7b63b11c1ac776e9be1876c9ddb346", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/png", + "uri": "https://ipfs.io/ipfs/QmehUN5Y1tWBaVaGHWGSMdGkUx6hAcApmJeJnqLVfh2T4P?filename=corona_india.png" + } + ], + "message": "Posting data of covid-19", + "parent_id": "", + "subspace": "60EB893B5B5EEB236C5600E6ED157720F5389CF9B02F5266D6863CBF98B560B0" + }, + { + "allows_comments": true, + "created": "2020-04-22T19:36:11.417Z", + "creator": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "id": "9b7281eeae1fd3e7ce69e9003ad21e5a4e7f0e6a9f79c938866f779ce17d396f", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmQmNBFcJsJqWVdt7S9eXR6kHBXVorXUnngDoHUnRt5dPs" + } + ], + "message": "out here like", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-26T10:59:13.635Z", + "creator": "desmos1lcxt4h5rsa32ml5kctte80qcnqw9t9mft3v4se", + "id": "9b7365242e7278af3edb999179dab8d3bf134d414d6ea0b987f62176f533136b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "zero", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:01:20.645268774Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "9cde471e34c9de618a47a33b1e098340db3c3b3cc88f1dd9aa2c925a8a6774af", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Almost", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-25T10:10:55.411Z", + "creator": "desmos14xec9tjsw4v5vzsx52dhrx7k873889pluymuzf", + "id": "9d37cac59e55c26f0bef9a06a8b26d4bcc95a74c48eb1e051b5913f5d88343ff", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🎧", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-27T03:05:03.228Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "9df0b16242586b6d47661e13c6ec07d4a4563681711d6842a54ed5ad37add1c3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "good night", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-28T10:20:50.655013899Z", + "creator": "desmos16l0xmm8teec49rk7q6wmrg95jqrpj87y7at7rc", + "id": "9e8415d0f28e1cb499cb9b3ff95df55ece402b1b55c2292fdce5f9246cbacea2", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello cosmos", + "parent_id": "", + "subspace": "efa8de93093dc20a40c6422cfa77931867ec0250567c04e476bbc02327206a75" + }, + { + "allows_comments": true, + "created": "2020-04-14T09:19:09.217Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "9f987ed708effba136abfb2c62b2891920dfa72d23b74086fcc5364ccaf084c5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is my pinboard for famous quote.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-20T06:29:09.03384Z", + "creator": "desmos1nemxzd4x2djvm6vdt7w8l0ahy3fsr57pe65vxj", + "id": "9f994d21e7a95c4ad1a8ecd2ee379fe692055b9786df6b2c36968ba795df0da1", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello, Desmos. ", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-19T14:20:37.784Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "9fc27e622d76438f9db955947cef1df5a5c4ab39ceecac9e60feda46283d9d89", + "last_edited": "0001-01-01T00:00:00Z", + "message": "BTC FTW 🤘🏻", + "parent_id": "e8271575e3f8f6556ff904751f5aeed290f925de3d0517c4f60ba263ea1cbfe7", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-13T13:47:44.799Z", + "creator": "desmos1ccsklhd7rm8fheq6vj3chjwsu9u6fs3agyq7j4", + "id": "9fd09af14d0a971457eb7db4e012963f57367e3b197f84513c300c1671544562", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmNMW2ovw4H9U7o4u2xDUo3b1dj488fBeZ5qNbSGQEyjWj" + } + ], + "message": "stay home:)", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-14T06:12:59.976Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "a04dbf0178a36afb384b19aeb90f8bba66485a7dcb569967f1e41801720ad603", + "last_edited": "0001-01-01T00:00:00Z", + "message": "you maybe right", + "parent_id": "e73d391ee8e0daec8378747ccf1ab947d489182bf172496a9609492cebbe67a0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T17:22:51.265Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "a0c47fc628c01e0d492f9ba50e8c01fa1a033f8c0f43dca477eeed21bc80a088", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Surely not everybody was kung fu fighting ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:20:18.211142835Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "a10878ca7d7cb317449d3c44bd943e24f360f1d79065f6961a665e343be9f47a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Can't wait for the [Reset Everything event](https://twitter.com/epicenterbtc/status/1242820735673995265)", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-21T11:26:54.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "a1eb056dd3b58709c0351e27d3776596bc887626e4c50cb127d21222fd08de1b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-21T05:46:10.423Z", + "creator": "desmos1u7cmy5tx2fn9lmdmphegmnqajedyz37s0mvxm5", + "id": "a2af5508f00c4b10a25e4f0afaa9b35f118b66ce8c417be010fb807af0f12ac4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "j", + "parent_id": "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-10T22:23:14.609997912Z", + "creator": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "id": "a2e5c528b98ead65770c1c7462858d2b58c835f322c9843376148df96ee8b003", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Validator Poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": false, + "allows_multiple_answers": true, + "end_date": "2020-05-01T12:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Yes" + }, + { + "id": "1", + "text": "No" + } + ], + "question": "Are-you-a-validator?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-13T08:36:41.996Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "a36ac52fec2e92a2ba78b88738a3981fd3347a8d6c15c8def9f30b031418909e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "see if this message will be duplicated unintentionally 🤔", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-14T02:27:03.592Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "a39f600103191b8bbe57f5e696d9986c3901a5a974f9cb0d8d4e257fc3dabd5a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "no matter it is decentralized or not", + "parent_id": "4cbcec8615dd6cea250629b8b585588ff0aa9c640ac63de6b4701029a9b5cd74", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-04T03:32:25.817Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "a44c9fb9d8620a0889ef749a1baee27be6f20812bef9024356758ce71827ced9", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmSK3ebeNrgCRFqrfBxzNCBixnQmNbBa9fyEiK9GJW6WLe" + } + ], + "message": "✋🏻☝🏻", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-10T14:20:11.121Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "a49893b26f9597be32da68b5bc645c62e03c1ae23204f80aa2db17762893a00d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hardcode benevolent intentions. Almost like playing god.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-14T01:59:39.03384Z", + "creator": "desmos1gmu4uevcvwfcuu43yp27gcv4ngxuh9sxfpv3er", + "id": "a7fb7a1bbb021c85827280fcc8cbc5e2a6856a8788c22b18772b611be57a1424", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-30T15:28:24.813Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "a81a220b942d45c2e88814bafd68fd71ae7ee3191b00dfb275694f96b9a92fd9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "they need to believe in something", + "parent_id": "76597beaa2698925b5b30fd991d3e8f720fa1a0234ffc6549b61948917ee5bd7", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-29T19:15:02.815Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "a8f5e5cbdea94525b2dd60ebb1c131785cf125e4757a6fa27b7183cea0eaa33d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "恭喜發財!", + "parent_id": "093a6057e15d3990d8cc769fbcab978ee997ac3330f709f0b37cd3a88b0d4046", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-27T00:36:29.03384Z", + "creator": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "id": "aa17e8ef2e258f6b527d4752330eebb40659f5cfb1411eed169abb66c6575be4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Decentralized Social Media will usher ina new era of human freedom", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-23T19:05:47.163160286Z", + "creator": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "id": "aa27fcff461e8de14d7649aa14d56c7c9b78c29356e9c81c0ccc676654940ab6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Around the World in Eighty Days (French: Le tour du monde en quatre-vingts jours) is an adventure novel by the French writer Jules Verne, first published in French in 1872. ", + "parent_id": "", + "subspace": "97ea6c072211c4df2762b66a793ef01a48a03b17a6d0f160b1364eac45f8ab3c" + }, + { + "allows_comments": true, + "created": "2020-02-14T20:16:40.535Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "aa6f0e3e11a5a6aefd855e2cdb7ebeb771806c0cffe75c8f5b9bb134d5a252f5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "crypto's killer app is free money", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-16T13:19:42.281Z", + "creator": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "id": "aa7e8e4dbbf8a1accb4506ec10779c7698ffb6e9ab5b1cccf3194c750f36d189", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/Qme65jibSxGMay1GVuYA1iG75Re3YEFDbg8cAwshCbK8Cq" + } + ], + "message": "もしもし\n\n♥️happy to be here♥️\n\n다나🐾", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-11T09:50:18.196Z", + "creator": "desmos1hj0gju9tzn90d6hjf6plr6pmdl55mkp3s2ruyy", + "id": "aac72b6e578c16f042b66bc2e1712e0a2343df122a2d972ea088180a44f9b178", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🐾", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-11T18:04:49.737Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "ab822d65a635cbfdda18a2f3ff04fadb775696896f4ffc160098ba8e7dbff86f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I'm not confident that existing crypto attempts at social capital are well understood. Things like Steemit just equate social capital to financial capital, and that's vastly oversimplified on both sides.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-04T05:19:57.703Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "abc299e1151949c5f3e232266d211404f05add2dc16eff6b01672fa5d625f627", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yea please upgrade to 0.0.14", + "parent_id": "95e0f2ed5e4abb2c3f681332ce99cdc501c6c5260e609c11f5658ab0f6ef9f76", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-15T05:30:49.464Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "abca8ffd138da86b65a7c3c6c2e9a2eb8e00f9e4762ec642a02c64455458bd4c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "How so? money is never free.", + "parent_id": "aa6f0e3e11a5a6aefd855e2cdb7ebeb771806c0cffe75c8f5b9bb134d5a252f5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T06:37:40.016Z", + "creator": "desmos1lzlfh4z6qz6630g05ufz9u2psm7tvqdap6k7dy", + "id": "ac5b378c97f49c2145243bc17eb904fc15cef16f7c9085d0bc4d2e0c29064a7c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hi what is the udaric in the funds", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-10T21:04:29.281697812Z", + "creator": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "id": "ad19286568d6d6319e3893f946a91d0a6637984dcad14bf53a4d635314a06015", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmWbL5peyr52oQ3AFYZzyeNNgmQAGvfcqV5LyXQtZupXYr" + } + ], + "message": "I like to read books!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-03T20:38:37.301135007Z", + "creator": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "id": "aedd58749b14053baa507bc84760fe9a15dfb210e6e016d2cdf1095e49d618d5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Desmos Poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-10T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "less than 1 year" + }, + { + "id": "1", + "text": "1 - 5 years" + }, + { + "id": "2", + "text": "more than 5 years" + } + ], + "question": "How long have you been in the blockchain industry?" + }, + "subspace": "7e45770620a851b405d62f7fd8d9bd490039d8e11d0db5fec2f396e847c6cd06" + }, + { + "allows_comments": false, + "created": "2020-03-05T02:47:54.884661161Z", + "creator": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "id": "af67fd679385f18a04cfb1709d5a99f14da3330be05090bab6d691d9548f2b70", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmPVBJ8fY8TFLtheYyvBQTiGVi685jtUAgewnzPyLH42aU?filename=Ragdoll.jpg" + } + ], + "message": "This beautiful cat!", + "parent_id": "", + "subspace": "46d6db311b3871d14b745ed42c071a34df3dfad129be733d9098edfd8050f0a9" + }, + { + "allows_comments": true, + "created": "2020-04-22T10:08:01.061Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "af878831e906e0f00b3da889abdfa14d8a2f1345fc1f5fc0bcfe431ee2dea793", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Bonjour! 👨🏻‍🎨🥖🇫🇷", + "parent_id": "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T16:45:33.559Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "afadc3def6f4b63cfaee1794d92ac17c5809d34f0e6e2046f8c985875cb58c37", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you everyone for reporting any bug and suggesting us new features! We will try to fix everything in the upcoming days! ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-22T03:17:49.03384Z", + "creator": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "id": "b05b1359ed78c52e4a9ff209f0a0dea6a01eda304d69995d8f0d9b3087ce8021", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-30T01:05:34.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "b182fc36e087b05370149b689b0dabcf3b79933964b1e4ef872562072d42d210", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a world class response.", + "parent_id": "4fdd46ccb4b1c2ee761968a8d59ad5396959264ee1b1b968da38c429780fac0e", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-17T14:00:35.015Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "b1ca8a78b63ac5fb1c62ea1dc24e99ddd300aff4cb693596256c601dfd6bb0f5", + "last_edited": "0001-01-01T00:00:00Z", + "message": "do cosmos projects consider themselves web3?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-26T01:04:36.831Z", + "creator": "desmos1kj95g6vqz2ww7hqlnp99lxa7rg8w7c54myrcmf", + "id": "b2071ae41e71c7f1718a4c4c2ad3c9d587623fff121bc1941209f9117e588806", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmToKa21k17J3Xe3XHADZC45MARoKXAsSnJdu1FDHNAdek" + } + ], + "message": "trevor??", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T09:49:37.774Z", + "creator": "desmos13e6u2a86fxjae3ddqlhn2t6nnn67t3ch3vl9ug", + "id": "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello from Paris from the IOV team ☀️", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-25T15:07:31.191Z", + "creator": "desmos1sht43e32padfe5v4ewztf8up5ldh324mj7ta3j", + "id": "b27096291acb4a35dfb907472ba73ddcdd39d14ad1a5bb858d69e221e71ed903", + "last_edited": "0001-01-01T00:00:00Z", + "message": "🎧", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-08T13:04:29.745398739Z", + "creator": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "id": "b3685efea00df0194653a2e760475f2ca4d2c01634756aa0ec78d4e2642762ea", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-30T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Beagle" + }, + { + "id": "1", + "text": "Pug" + }, + { + "id": "2", + "text": "German Sheperd" + } + ], + "question": "Which dog do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-05-01T03:39:30.922Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "b39056ad9c235e895520a6569fdf3edbb11769541c83ecb39364d4f510a7b7ac", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy Labour Day!", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-05-01T08:04:03.705Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "b40ddce10b03ee9c1a740b75b56255ea6e00ee5231eb59346bef337f0a45612e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy May 1st 💪🏻🥰", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-04T09:06:38.799513683Z", + "creator": "desmos1yyf428wtf75skphxmf5pyadhrnjywq3c73wya0", + "id": "b463b00a7b558d16a24d7541873e3e4553f59e5c3b11fcf4f152cd5d1d63281e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you for the clarifications @RiccardoM ", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:08:57.135156364Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "b4713015783490379dd63bc3b1752cee60bc2d93940ce67d82ce7ebd05a5b271", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Can't wait no longer", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T08:43:29.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "b4aae855665ada609e34dd4d800d2cb73d738ec89790d8f81ab1f8effed81425", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is another test message", + "optional_data": { + "external_reference": "dwitter-2019-12-13T09:51:32.277403" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:38:17.702Z", + "creator": "desmos19m7awuk988tkadyr4el9tn4vlt77w4wryrst6c", + "id": "b4e5c65ddb0aa6ef3eb3adee5ccdfc249adfb618075a346df5135f18c33d2378", + "last_edited": "0001-01-01T00:00:00Z", + "message": " 大", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:52:16.052Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "b5284d65cf6f88eafadfdca523b01cec8d88104c30af94f3c2ca4d59000cfc05", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Need some vibe to concentrate while you're working or studying? ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-20T18:50:58.337496333Z", + "creator": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d", + "id": "b5e08e2a0399b1f9f621b642c2a9a75fbc61b449551bd427bbc0a4e956e63b3d", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/Qmaa1GpGKmZfvXBqGi4k9LLGqV2ZtVcJvYFnC5WweBU26T?filename=216614_1006585122050_8400_n.jpg" + } + ], + "message": "my portrait", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-10T07:27:24.254Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "b6e434c4bc312993182aaed6118982b8aaf520177d01b8908e63b99163361ea7", + "last_edited": "0001-01-01T00:00:00Z", + "message": "You may create a Poll 😆", + "parent_id": "00727e9704aceb6e10102366dcdeeaf94d063c4588cb774ba6d37a40e619b258", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-20T08:13:04.03384Z", + "creator": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "id": "b71bd3c8d238aa66d406086debef1616b4ab02f8e534032a2c497c30dc6c5f4b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "My first post", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-16T14:14:36.088Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "b75201687041a044bce359ccb6cb0a1d354b8f828e5cc1e4d915a444c2088ba8", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmQjHmkpsjghksqb7AwTkFfZAjnQg3s8j6XFeqQMX24m7h" + } + ], + "message": "Fuck the ru u uuu lesss\n\nhttps://open.spotify.com/track/6TodWdTSDfzwgYynTZSvJn?si=nApdmFOFROm08MTa7MFRyg", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-21T14:52:58.184877705Z", + "creator": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "id": "b85bed667497c31cf660bff2118047d323b9d647aba141ee476ba6ec69845aa6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "test message", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-03T09:02:06.464Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "b86720f6db62ec0849aec750abc9b30489d75e7baef8f12209c12afdf764dc5d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "extra shiny mooncakes for all!", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-06T01:45:05.144Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "b8e641a8e7b9220c4f7e72e9054deef412657514ce2753474c0cb49bbdc3943c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "We cannot solve our problems with the same thinking we used when we created them.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T08:15:59.982Z", + "creator": "desmos19f22uag6up2klstt7jyhh6edln6wxz3msn5nqx", + "id": "b8e870750b3210061dfe5d12af71481badac7744c48e4979e4fbce725e9ae1c1", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmP6TmYv8jek84QKZReTEeshSKfda19ydb5EVRZpSHjqL4" + } + ], + "message": "Hiking 🤝 Me", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-25T07:05:14.248Z", + "creator": "desmos1fg43gttcm8l5c6jptn7stnjnnj0hl5xqc7p0fz", + "id": "b962c95a53c83c2f60067f1543975bc996e0cff94400641765f5f0e717126ac6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:43:13.592Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "b98b2b021a93f16e04031c4d4014e80aef721f859afb87030162fb481fd42a18", + "last_edited": "0001-01-01T00:00:00Z", + "message": "is #hashtag working?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-10T19:51:26.18643382Z", + "creator": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "id": "ba73f3622933abdd6ff22e11642260cb29cd1a13651faa0a0d6e277923adcd0f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-11T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Often" + }, + { + "id": "1", + "text": "Seldom" + }, + { + "id": "2", + "text": "Very rarely" + }, + { + "id": "3", + "text": "I don’t read at all" + } + ], + "question": "Do you often read books?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-30T21:29:25.862376147Z", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "id": "bbd8d338b85cc5f0a2bab4d4f2d5498006fb985d64f2896c7c74cf1b759afb77", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Enjoy @simi-dev ;)", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-04T15:47:16.694Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "bc95556ae56b5d534e61f007b07a33047842fd0e978ec47aa0471e5cf9fe3213", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Do you know why this DApp is called Mooncake?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-05T05:52:59.154163004Z", + "creator": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "id": "bccfafe600077d430586713a896b011fa1b56f08d8c7022dd90e38ffd3884fc2", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "text/plain", + "uri": "https://ipfs.io/ipfs/QmYVZ6ewAbNZPB52Hk3B8nTRymmCC8SDHL8LovcCLEs6pv?filename=gift.txt" + } + ], + "message": "Gift!", + "parent_id": "", + "subspace": "663ef20d8f790fafc23cc580542c553135232b1cb0e71adc58b3af79147dd994" + }, + { + "allows_comments": true, + "created": "2020-04-22T06:46:13.081Z", + "creator": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "id": "bd88ce136e330d6a8d1041cac646038bba8fb40db4f948b6dd1abfe90a7de018", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello", + "parent_id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-22T16:33:07.58981989Z", + "creator": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "id": "bfe68c7b6e89a958b1a429d8057537073537879d68659000b6ade357455e6d7f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Adil from Inchainworks", + "parent_id": "", + "subspace": "7279b8205d3e8256918aeda948cc926de9ed872b7de7ed34e2de246304eda0cc" + }, + { + "allows_comments": true, + "created": "2020-02-15T06:00:16.351Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "bfe7fdf21054c84ee97d1cd04bcfb59fcfe88f77aebfd130475aedee9d2897ef", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I agree. Status is doing a great job on this", + "parent_id": "855e64ed5de045c872b39d250c711d56f92a880648366a0b20e5216c212b7821", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-24T14:28:07.003620855Z", + "creator": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "id": "c113c1dbcd2b77e111f26d4880645dc81b4393871712d483a5498f684dcd97fc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "...al of this will be yours...", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-19T04:51:15.892Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c1813603465a3ab30ab6ba2a2cbb174cf0dd7030156673d0d0985a32496ed51c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "It depends how you define web3", + "parent_id": "2030b1be95783e9002be686eefa4e50ee34125445d064f17d3f59c14b7fcc807", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-21T06:29:37.295Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "c1bc8fe425c5d01abb95ed3582de354646f5db6bab95abcb23f134703c934c2a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "-factor", + "parent_id": "8c6833479b76b08d8b49e7076f93ed4c2d7b9d749d7a224066555cc671255e92", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-26T01:03:45.703Z", + "creator": "desmos1kj95g6vqz2ww7hqlnp99lxa7rg8w7c54myrcmf", + "id": "c1c2e18a4e374578c140f66f4e53c56fa77394f463960ce7982e0ce912b37c6c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-30T21:08:55.397504182Z", + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "id": "c259064b41b47cb0f7f57c3ae1d1741f4ddcd82316d2c21328ec0aa73b7fc696", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Thank you for the invitation :)", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-30T15:54:48.948Z", + "creator": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "id": "c3f3e3bccbadf9ceb8eeaecbfac399cd3d49d303204861511401b0ca0fa5cb44", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Because they defeated death and live in our hearts. Jesus Saves. God bless ya", + "parent_id": "a81a220b942d45c2e88814bafd68fd71ae7ee3191b00dfb275694f96b9a92fd9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-04-30T15:49:56.792Z", + "creator": "desmos16ud38ccsu2y5cdp64e3jys4nlj8g547wdwag0l", + "id": "c4082b9bcc0b8627a7db9501fe205a010e910482509615479d041beb58b2cf60", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Yeaaahh cool!! It reminds me doctor manhattan from Watchmen ;;)))", + "parent_id": "64d6a0562f599a1ebf799748f2ba3c2b27e9b340f59a4d9bbd765940402e00bd", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-21T11:24:49.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "c42b475a80e47f83085612b4bd20ab472ce67e99ef35f30d237c7e7cc16cb411", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-14T13:33:54.83382Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c59fc8486bbf8adaeaa2648b55ef6a14f60c28dc3b136fe8bc3f117b0ad756c4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Primer Phase 2 is on! React to post and validate at [Primer](https://primer.desmos.network/).", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-17T07:57:00.686Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c600d2109cbb2cceb9de766e98298d56f50c674cdd9b33dea8274fe4fa8e4100", + "last_edited": "0001-01-01T00:00:00Z", + "message": "“Don’t be part time of anything, be full time of everything.” - Carlos Santana", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T10:04:39.151Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c63a0619dee65455278ce58c1ff7f2a74ca41a2489d64f99bc2f638124f37b5b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "`udaric` is the denomination of the staking tokens on the testnet", + "parent_id": "ac5b378c97f49c2145243bc17eb904fc15cef16f7c9085d0bc4d2e0c29064a7c", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-03T20:00:31.548863845Z", + "creator": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "id": "c643dd0c40b89e46f6dbb91d372f3b8e05cb39a56c8728e17d3ef85375e9fa64", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll about pets", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-15T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Cat" + }, + { + "id": "1", + "text": "Dog" + }, + { + "id": "2", + "text": "Parrot" + }, + { + "id": "3", + "text": "Bull" + }, + { + "id": "4", + "text": "Bear" + }, + { + "id": "5", + "text": "CZ" + } + ], + "question": "Which pet do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-01-31T11:08:42.686965031Z", + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "id": "c6c615fa00c75018f330db9449b39454097e1c6a3327b45546e9747d8427191e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Go team!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-03T19:26:22.908226106Z", + "creator": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "id": "c7427ab11a4c08eb7d2ba657195ddf16adaa63e21f21c1b3ad8a3675db938cab", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Just a poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-05T22:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Want to have reward" + }, + { + "id": "1", + "text": "Don't want to be rewarded" + } + ], + "question": "Just a test poll to receive rewards" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-25T07:03:09.134Z", + "creator": "desmos1fg43gttcm8l5c6jptn7stnjnnj0hl5xqc7p0fz", + "id": "c787808e6e216a7cfb876b526850fb9e0eb217c18e47e5b87d027f03e0e1f1b4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing2", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-28T08:55:19.539Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c7eb2f4d1fe11a8256c790f2911e0a61b3279428e453776bfd548b7213f4acdd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "早晨", + "parent_id": "f4adc73d852a7ac3bec63fea227140ebf8f6e4d7ca2e66080e27a3add6d88c57", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-31T12:42:34.288Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "c889de98682770acb953b171df4a28e2b6fc297325bf1642cb915e24c5c0abed", + "last_edited": "0001-01-01T00:00:00Z", + "message": "aaaaa", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-21T14:56:27.653397551Z", + "creator": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "id": "c96944fbc5e0290bbd9b535d07152987eb1df941ad310bb8cedf38c2ab47344c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World, Desmos is truly great and not the 💩 in the crypto world!", + "parent_id": "", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143" + }, + { + "allows_comments": false, + "created": "2020-01-22T14:01:37.048233Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "c9abd69d0d9ba405d0d5c27f9b0d9bb4e58a41b59eab6e237ef08ca11c41bd05", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello, human!", + "parent_id": "97286eb1572e13eec950e5439d09daf814155bdc5eceab64b8ceb94ad6e2c987", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-05T00:51:39.352Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "ca54079e6c1653f1728d3c594735423a6da588c7227dce0b698cc66c433e4e64", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmP4CYCmKVBHYdynQdvaRhEmrUoo8v7v6yhDLnvmbnfoRv" + } + ], + "message": "A famous quote from Abraham Lincoln.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-08T06:06:02.770746102Z", + "creator": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "id": "ca5d7b4481d07dae5f5d22b0e9cb7f51f4db4416316b5189f535a1fcdaa713a5", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmfBcshQrJyk4jRdKZeMDEJB4ga4ejFAqamZcoCmU8e7t2" + } + ], + "message": "Bi23 logo", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-02-13T16:00:31.786Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "ca809e695d09061709df7aa8b1a0e0a7c88d80a91597084752b02be01fc30629", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hahaha nice one", + "parent_id": "11cee369888628b5fb8b21b68b37a4ce634c7061522c4cf0475ba4d09d2efaa5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-21T04:13:32.395Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "cbca5f9621eceed97ba73057e92674614c6e5fe08040ad4d3d9eed3746ce754b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Information is the new oil. We need to pay to reject the inflow of information, which turns the price of information to negative.", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-18T05:27:15.145Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "cd755a7e2c9ad845c9e86ee777d83c373469bb662bfd8ef7d3b37ae4d94541f3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Absolutely one of my favorites!!", + "parent_id": "4db5e08a4243cef25bcd8c76d81b7d5518f0f3c81a8eda1b41d4aa5bccb8d866", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T09:09:17.076Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "cd7ee9cef8621276aa303635a473cb22623bf6e86b12c79564fe41153023eea0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Test", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-25T07:01:40.135Z", + "creator": "desmos19lcvzq73s3fr9uwwwlu3qjsfsqjavqawss57ce", + "id": "cda198fa449ed39ecee0d4f8edb5bc6b5685e68e91747cf72b4bfd08ecc80fe8", + "last_edited": "0001-01-01T00:00:00Z", + "message": "this is brand new 😎🤘🏻☑️", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T13:45:41.621Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "ce1d9eec372d86a038d1c0619b993d94b22c2cb783340faa772746f47e52eeb8", + "last_edited": "0001-01-01T00:00:00Z", + "message": "hello 👋👋👋", + "parent_id": "469a63694b6c9548d7f6183a745081b91e380de1d14aa863abdf10333ff1db12", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-21T08:07:29.662Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "cf6749d5720fe4101416d092348b90dad33b348d144d0ea217df80a0c850381e", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmbYow8EVfdQQH996grK18Jr7K3J47nVt6qRUESyuKabF9" + } + ], + "message": "Gundam vs Hello Kitty", + "parent_id": "41a0be43db50f8522476b81aa74a1a2f4f7320bfd69848537a13e1835e0a3381", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-30T05:38:02.795Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "cf8403745e45519d6f67e8e9f0e9cd58d5ed6d266ca752492e982b9b4bdc0529", + "last_edited": "0001-01-01T00:00:00Z", + "message": "123", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-25T07:01:02.514Z", + "creator": "desmos1fg43gttcm8l5c6jptn7stnjnnj0hl5xqc7p0fz", + "id": "cfefd1307243ec6681ae3322d4dc05d882657bacc4e639191c80889d7d5a6db0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-06T12:31:03.992617709Z", + "creator": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "id": "d0977521a9238c5274dd33a557fce1fdbc351e476636c9ed09c5d3f440140486", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpg", + "uri": "https://ipfs.io/ipfs/QmZA9LkLWCvpNTuEJegfsPgay2c7LND8PCJZP1iEAZHgyX?filename=desmos.jpg" + } + ], + "message": "This is Desmos!", + "parent_id": "", + "subspace": "b6c6898061fbe0e85b5bba31f546c5fbe249759f2f75f65df6d610a94d661ac6" + }, + { + "allows_comments": true, + "created": "2020-03-03T06:00:10.659930914Z", + "creator": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4", + "id": "d0fb59f466329ac34cad828d8d34ca840f1606ed40212bf4447d568a2fec7bb9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "First poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-06T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Polar bear" + }, + { + "id": "1", + "text": "Grizzly bear" + }, + { + "id": "2", + "text": "Black bear" + } + ], + "question": "Which type of bear is superior?" + }, + "subspace": "6a30f630de10757c2efcde448c91d09746a44b6be1688992634996f76955a21f" + }, + { + "allows_comments": true, + "created": "2020-03-27T11:38:37.429Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "d11b28a6b9f354700a3dff8ce3bc1140d4099582edef5408e93064e302ac63b2", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmWhwPg8iy9xk12jhhBxET1VJSPHxbiVHyUX4PnSRvsQfE" + } + ], + "message": "One of my favorite contemporary artists: https://open.spotify.com/track/25SJaCCPiosugnlY53VhRG?si=EDYB5pCaRPet-pPbozDfKQ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2019-12-11T12:42:39.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "d190a2dc940b1266da7b5ee7c7852006951ea98cfec60c81cca82d6ca105b0bd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a new post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T14:18:59.422526" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-04-29T15:10:42.535Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d1975b2e949535a9424900f871ade87533ab5e4218c48bfe4728958a0162b4d4", + "last_edited": "0001-01-01T00:00:00Z", + "message": "![alt welcome to the real world](https://media1.tenor.com/images/d381427f929ee91798a8167bedbe198c/tenor.gif?itemid=5898146)", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-12T00:30:54.293Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "d204e1be53558d9d57640d0b093fca5facb50048188a4e3c476c0fa32835187f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I think steemit got most things mostly right, but failed by allowing steemit, Inc to basically own the steem blockchain. plenty of good ideas there. might be a good idea to separate rep from rewards, but we risk entering the complexity zone. Suggest all moneys be made intentionally simple and easy to understand. ", + "parent_id": "ab822d65a635cbfdda18a2f3ff04fadb775696896f4ffc160098ba8e7dbff86f", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-17T15:30:21.108Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d209fff1555aae1c048d6bb2d95a2d37ad87f34365ec250bae2a2f52efefeb69", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Spread the love, not hate. 🦁", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-09T13:10:49.713299225Z", + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "id": "d26028d560ea75e5841a311cfc99eaf932c163865f4a274a084981fb2e3b4af3", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-12T08:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Porsche Panamera Turbo S" + }, + { + "id": "1", + "text": "Audi RS7" + }, + { + "id": "2", + "text": "Audi RS6" + } + ], + "question": "Which car do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-05-04T05:43:05.391Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "d2dd7bc29da91695b7bc13fc10056ea0d891786a3f02832cf62b82becf843874", + "last_edited": "0001-01-01T00:00:00Z", + "message": "that looks damn good 🤤", + "parent_id": "044a81561f1737ce018b1741b88aba6eb8fe383a2514abac950fd46c55b8da97", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-12T04:10:41.225Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d326b22596c8e59ddb69726f68b775db2b81d0818e369175e0605bff94e492b6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Happy Easter 🐣 ! Everyone should wear a mask when they go outside, even the bunny.", + "parent_id": "fcf0fa07c23cb2010449c4780e7747037b365074e1767f1694a2ab0c7058bf24", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-01T14:14:22.052503025Z", + "creator": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "id": "d41b30df30554f3c8daa3f3eee70e4f62f35dccd42547c7c7ce9bd45d9df50bd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Poll regarding Coffee", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": true, + "end_date": "2020-04-02T12:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "0" + }, + { + "id": "1", + "text": "1 to 2" + }, + { + "id": "2", + "text": "3 or more" + } + ], + "question": "How many times do you drink coffee in a day?" + }, + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-14T02:46:31.057Z", + "creator": "desmos1jqpqjcmqq0rq2dzgk6y9cljvx35jwqndkxr54z", + "id": "d4a169eb6809b6edd269bc5943d74689f1fae5ccb69f080340980f52f15e95e0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "current time is?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-29T05:09:04.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d4d5e4e8ac7fce379301602dc9c5614dd6fc49f042b1276db226e9de38776a5c", + "last_edited": "2019-12-29T05:38:09.03384Z", + "message": "### Do you know?\n__Big Dipper__ supports [Github](https://github.com) favoured `markdown` as always. So you can post your messages in `markdown` on __*Desmos*__ and display well on __Big Dipper__. This helps you explain ideas well. \n\n__Desmos__ stores any characters so you can express yourself with Emojis 😎. Or write in your favourable languages 우수한!\n\nYou can reply this message by executing\n\n'''\ndesmoscli tx posts create \"You are the one.\" false --parent-id 46 --from \\\u003cyour_key\u003e -y \n'''\n\nOr like it by\n\n'''\ndesmoscli tx posts like 46 --from \\\u003cyour_key\u003e -y", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-03-09T09:48:36.257797888Z", + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "id": "d521ed763fb2384971c9a854a8b091952bf50e010476fc5047b2085a95060e75", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-12T14:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "Pizza" + }, + { + "id": "1", + "text": "Stake" + }, + { + "id": "2", + "text": "Mediterranean food" + } + ], + "question": "Which food do you prefer?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-17T15:40:45.411Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "d5f76a6a574bb8620f1fc9bd1da5f2d4249f89c6fd406ff9393c0ff6fdb59278", + "last_edited": "0001-01-01T00:00:00Z", + "message": "nice!", + "parent_id": "f339b5af2c47dedf307f8f20d645bc374a2715e0dda71f6541c387ee2104bebe", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T11:40:29.259Z", + "creator": "desmos1p8353z7nmdl2332arylfxg6rly9ln2mp963su9", + "id": "d66e7a2108388a65ad7b5dd84cb232e0c244446861bd2c61900d3ede28ae99f9", + "last_edited": "0001-01-01T00:00:00Z", + "message": "test", + "parent_id": "2020-04-22T11:39:27.653Z", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-29T13:08:29.03384Z", + "creator": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "id": "d6dd28b55b07f4897ec1f89f49eea72856b16ad807d47126d161ac5e53d7d8ea", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I love this World", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2019-12-20T11:58:19.03384Z", + "creator": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "id": "d8f8472c8c6a4572ef60293448551c586eb4e9a5e2407578001ee44ec09a36cd", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-04T10:44:28.355Z", + "creator": "desmos1q8df8fp3tpx6gxjlhsc0vzqaxet6wa2pmxrhzh", + "id": "d95bff0b19bf5f8f00787669027b05825501243e1126c5684d5e82c516e2140b", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Soooo, who is hyped for Half Life: Alyx?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T21:18:55.871Z", + "creator": "desmos1vusy7k22ry0hldgfgvf6c6nvcn5qql765v8vhz", + "id": "d96bf27e7aac3c2f051128bd743f260e3df46b1a1504a7cf922b92e24c937b1d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "never been in quarantine 🤣", + "parent_id": "16b5390b68a79b54aed05ab62929e04c44f11fe5b949c0bf96351714ad8bc79b", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-15T04:18:22.547577Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "d9e05dc07ab47dfa3f30b06822cae9653fa5c671d5841e7b6a83bb20064215e6", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Which Dragon? Dragon with Stake? ¡Hola! Mi amigo!", + "parent_id": "00f7cf78bb3e31d72605e186bcdfd11d2d0195566dbeec61d5fe59aaa5eb3f75", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-06T14:27:26.517Z", + "creator": "desmos1zyk227m35700d3qktenkk6f3zeheyqrzq2ya5l", + "id": "da6b57caefd833eecae13aab7f9871a7242b4ad913bc0f4915acb17fcfc8aa04", + "last_edited": "0001-01-01T00:00:00Z", + "message": "it's given to you to activate the account when you log in for the first time 😉", + "parent_id": "ac5b378c97f49c2145243bc17eb904fc15cef16f7c9085d0bc4d2e0c29064a7c", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-29T16:26:34.03384Z", + "creator": "desmos1patn4vz7dcvj7ae5t7jje0red4jrm66w0tku8d", + "id": "db1e801fa24679f9edfc092ef877aab15f39a25d04ff836977717d6806921c06", + "last_edited": "0001-01-01T00:00:00Z", + "message": "melea ◮👁◭ Desmos Validator", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": false, + "created": "2019-12-11T07:57:54.03384Z", + "creator": "desmos17573axzcrmq6w5jwx27qlf9d90lcgkfmsrjycg", + "id": "dc09b4e6fa1303ce484eed24a09d9d5758a6b1708bc9b3ffeb37f5e747d0e348", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This is a post", + "optional_data": { + "external_reference": "dwitter-2019-12-13T08:51:32.262217" + }, + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-20T13:47:02.591Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "dc10281240e06affaa3c7f7bc6c7611382fa92b0929112ef3c630fe5d1f37086", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Welcome! 👋", + "parent_id": "36616f40467d40793d05a00c484f3e275da6a2c6fac0ae14c75c22deab7cece3", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-04T02:07:18.166955392Z", + "creator": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "id": "dc80300efd795d96e060cf1d8583ed442aca4eb8ad140af8f38ac709a3fd3454", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Post with poll", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-03-20T15:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "yes" + }, + { + "id": "1", + "text": "no" + } + ], + "question": "Do you think height is important?" + }, + "subspace": "46d6db311b3871d14b745ed42c071a34df3dfad129be733d9098edfd8050f0a9" + }, + { + "allows_comments": true, + "created": "2020-04-03T18:49:28.946143643Z", + "creator": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "id": "dce6de6dfcdc03735d760b03cf8666160353271a10916daac5cf66aa339b24ba", + "last_edited": "0001-01-01T00:00:00Z", + "message": "The 1 million question", + "parent_id": "", + "poll_data": { + "allows_answer_edits": true, + "allows_multiple_answers": false, + "end_date": "2020-04-10T20:00:00Z", + "is_open": true, + "provided_answers": [ + { + "id": "0", + "text": "I'm worried" + }, + { + "id": "1", + "text": "I'm scared" + }, + { + "id": "2", + "text": "I don't give a piece of shit" + }, + { + "id": "3", + "text": "I don't know" + } + ], + "question": "Are you worried on how the humanity overcome the depression?" + }, + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2019-12-30T01:40:59.03384Z", + "creator": "desmos1rt0sdmma2mhcgq463s2m5myf5w2mcks3cr4xjn", + "id": "ddffc6a7a1e73f7d27696ceee2db6b84f7a3067b2c744f260534b6574c9a1b44", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Don't Mock Greta Thunberg. Listen to Her. She’s right about the science. -- Bloomberg.com December 12, 2019, 3:05 PM EST", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-02-18T01:17:52.779Z", + "creator": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "id": "de12f0c6b72b32fba45fa2a0931ab9d95caa72ee25cd699cbef4968948ea0831", + "last_edited": "0001-01-01T00:00:00Z", + "message": "test", + "parent_id": "b1ca8a78b63ac5fb1c62ea1dc24e99ddd300aff4cb693596256c601dfd6bb0f5", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T15:00:39.746Z", + "creator": "desmos1darkgthrv55tnvkesx5l6nv7kcyf2hmlqseu2d", + "id": "de6c1a5d7bc0e6a1680969eaaa7d1c46681bdccbe10a18160f5a3c761aca5a16", + "last_edited": "0001-01-01T00:00:00Z", + "message": "welcome ios friends! often when i post I'll get a duplicate post, but it only shows up for me and goes away next time i load the app\n", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-03T13:43:08.276Z", + "creator": "desmos1pp9x6cppe8ykytk2ecvnup3pak56esh64ypyvd", + "id": "e118fa2f999e085549f68f7b36ca86a6bd480315772cd20c8880fcb05f54e783", + "last_edited": "0001-01-01T00:00:00Z", + "message": "wkrt", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-26T08:55:30.483Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "e1702bc2d8b818ba97435061bc6505c896f306de27d47870a3f94f924eb648e6", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmTQbRWaanP2eQR5w5fFjwyhyQvXkw3nwuzimGH5WiZj81" + } + ], + "message": "I was saying...some vibe to concentrate while studying or working? https://www.youtube.com/watch?v=5qap5aO4i9A", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": false, + "created": "2020-03-06T16:58:36.905043634Z", + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "id": "e1cefae65bc7875962f21aedb041d67accf56bbb3b2f96458b5698bb8fa9cedf", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.io/ipfs/QmTXszBDASEUXvb845MNuQYvz2crSBiUhvBZBw2tn4KFXM?filename=Fotolia_44443331_L.jpg" + } + ], + "message": "Multimedia Post", + "parent_id": "", + "subspace": "626db8036244be06486ac6e5576570ba41c4ca2aca4808e123f8f11f97d719f6" + }, + { + "allows_comments": true, + "created": "2020-03-05T08:20:04.825Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "e22788aef84797225c7c8d8ec8d1626d427aa8b1cac0536213f0dc86b388a4cb", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmPhw7q686cPuyGUcYTZdbtTGnJVDs7PbmE7PJaKKSR2oT" + } + ], + "message": "We could have coronavirus...but we also have carbonara pasta like this one!! Do you ever try it?? 🇮🇹 #thatsamore", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-08T09:20:16.784Z", + "creator": "desmos1wsk63dkefrefxpq0k0fe27gx9lcz0gmg0pll7s", + "id": "e2c651aec74109c88a6bfa770f76eea368b506896c9b9c0c7532a48243bb384a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "https://www.youtube.com/watch?v=qgylp3Td1Bw", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-13T17:09:10.066Z", + "creator": "desmos1xgmrkgzk59ea088jsmqy7rstpn0v7p4l98p6nd", + "id": "e73d391ee8e0daec8378747ccf1ab947d489182bf172496a9609492cebbe67a0", + "last_edited": "0001-01-01T00:00:00Z", + "message": "No OnE nEeDs DECentralZd SoCial MeDIa\n\nhttps://twitter.com/jonathanwilson/status/1227756917394755584\n\nNothing to see here move along.\n\nopen access to information and networks endangers our health and well being because then rumors can be propogated. \n\nright?", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-06T10:11:30.583Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "e7938f035cb746a9c59c67f1195164e6d8bcb9779f506e65e238fa10a23e572c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "it should work now", + "parent_id": "4cb48fdecb39e736588aa342e3838a37f379b3308ccd1dc5d347ee159213cbea", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-24T14:21:04.161740078Z", + "creator": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "id": "e7b30662726f150b89748d6ed9ac29c9d732268b659a79d8c7318082a6deb687", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello people!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": false, + "created": "2020-04-22T06:43:42.281Z", + "creator": "desmos1qvsf9ss2ukn8rkewxeps0x7399z72wttwlmmsx", + "id": "e81ee7fdd2b286c3d092d5fc152319801ef650b4683415f2ec622071e7ca8772", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmUzjWtJ1c2xbshVbuvRsHBEMzmYJbbUn1MsE1JyPHf4Eq" + } + ], + "message": "hi", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-19T12:44:53.742Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "e8271575e3f8f6556ff904751f5aeed290f925de3d0517c4f60ba263ea1cbfe7", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmXxrBoRG9hM7NyjmcueTiFhxqTxHXYVW18eSBbeFMUS6n" + } + ], + "message": "buy bitcoin", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-27T03:07:13.605Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "e9300912e39fdbb6fbec3abe1e4244d3e898822547ddc3de855c7c0ecd53ae97", + "last_edited": "0001-01-01T00:00:00Z", + "message": "buy bitcoin", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-27T00:49:04.03384Z", + "creator": "desmos1jzju74lns6ldhfs9zqt256uuvh0fk98xlzlzaw", + "id": "ea39ef209a8ab2d5b62966abc8421dfb7581c687ffe79d5ed997130cbeb9755a", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Decentralized Social Media will usher ina new era of human freedom", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": false, + "created": "2019-12-27T15:54:34.03384Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "ed4a0992a65d5f1b491a31a4effdb0fcbc176070b03c08c9c08b6bb4dc174b6d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "To all friends on Desmos \n\n![Happy New Year 2020](https://media0.giphy.com/media/PiiSP8kyBXqnLSAGjS/giphy.gif?cid=790b7611bc72c787b036c3acc514ce6697867936b013bb7b\u0026rid=giphy.gif)", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + { + "allows_comments": true, + "created": "2020-01-17T13:45:56.967069074Z", + "creator": "desmos1u2g42tlzq9jtzldkpwpr2mxcvqaqj74eenvu25", + "id": "f06201439ad3326156ffadcc17263965660278ec8bc1a9e640b0e0093440b3eb", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello World. My first ever post on dSocialNet", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-20T16:49:42.085Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "f247706913e876b87ae0f923141823137cd136eead5da7645eef8d2f5b262348", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Full of white horror these few days...", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-21T09:30:37.945713759Z", + "creator": "desmos1v9q6q82aas3vknhngmeletvzhlhk5jqpy2t39a", + "id": "f24b3cedf3d03ff878890030169b7fe1f4856832296ecbfd2821d1c2e109b88d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello world!", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-03-05T11:15:03.959Z", + "creator": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u", + "id": "f2ce4acd66b9704d2e672bc2b67da6008ded381648b75972139b30326ab04940", + "last_edited": "0001-01-01T00:00:00Z", + "message": "This proof Mooncake has no censorship 🙏🏻", + "parent_id": "97089e51ef7170e306aa195ac3b72179f029ffb9d06797a46afbdcd74f21f362", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-17T14:34:16.823Z", + "creator": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "id": "f339b5af2c47dedf307f8f20d645bc374a2715e0dda71f6541c387ee2104bebe", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Go hiking in the dolomites!", + "parent_id": "16b5390b68a79b54aed05ab62929e04c44f11fe5b949c0bf96351714ad8bc79b", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-02-01T09:12:17.681Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "f45238705c9108a12efbcb0f3ec8191b78baed947e80f89bd981d22b4f52a82d", + "last_edited": "0001-01-01T00:00:00Z", + "message": "May the mask be with you 😷", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-28T08:24:18.039Z", + "creator": "desmos1wc3m7490hl28sgl4pruu4s2jgjvlu9n4dhzf73", + "id": "f4adc73d852a7ac3bec63fea227140ebf8f6e4d7ca2e66080e27a3add6d88c57", + "last_edited": "0001-01-01T00:00:00Z", + "message": "good morning!", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-03T13:36:51.799Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "f8015acf7734e551a52580b5c28fdc993b0319673c9e994c69bf11c96ef0dacb", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmRM3gaShctuA7BXwGtQ2tP4zcXDWYkLjvGaVasv2MDmst" + } + ], + "message": "How is it going guys? ", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-27T10:24:12.489Z", + "creator": "desmos108sxu55egxq7c7s42pquywpgumms8p8ctgs2c9", + "id": "f8fd4708dd3d9170cf55457f439df4f868e205070f92886492b4e974410cec70", + "last_edited": "0001-01-01T00:00:00Z", + "message": "♡(◉Θ◉)♡", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-03-28T15:22:33.726Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "f913854411ddcb99b20ed600e0af04abf865b83c183d4a2cf6fadb1664e95e4c", + "last_edited": "0001-01-01T00:00:00Z", + "message": "testing the new UI", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-29T14:15:24.343Z", + "creator": "desmos1xzg3en5c6zt73qefkytw7xjlp5kl57spjphf2x", + "id": "fa04c2fa9aac2e7f7e651c40bc5a098bfa269f416088bafb176309a461cba9bc", + "last_edited": "0001-01-01T00:00:00Z", + "message": "stop buying bitcoin. start buying atom.", + "parent_id": "0", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-04-22T19:39:30.693Z", + "creator": "desmos14rephl0xx4dvm8495svj2rwcyrxwyhy9lr7ss9", + "id": "fc1c4a4054e18db433f40bf3f57f86314c8cb9fcd471a833a91ada492d93132a", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/gif", + "uri": "https://ipfs.desmos.network/ipfs/QmdfPZpZcxxuFwyQhvY1pPu7PFqevHYRe9JFYB1DCEy8ju" + } + ], + "message": "🤙🏼", + "parent_id": "b21aca99d5dca9ceac036ecda72dca9f0ca261f1ed61304091aa8c75fd38a8d3", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-17T13:29:10.457951138Z", + "creator": "desmos1g7mzep5lfempedgcfrytrausnt8d8w889muwmm", + "id": "fc37a4267d8bd9b52a0fc27a4df6a6c542db762ee1db39f7c535591827ce048f", + "last_edited": "2020-01-17T13:56:10.209695956Z", + "message": "Hello Worlddddd", + "parent_id": "", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e" + }, + { + "allows_comments": true, + "created": "2020-04-11T23:22:54.126Z", + "creator": "desmos1vunyt66efzlyns2yzym6vcwnyk7g9kqd3nrjj7", + "id": "fcf0fa07c23cb2010449c4780e7747037b365074e1767f1694a2ab0c7058bf24", + "last_edited": "0001-01-01T00:00:00Z", + "medias": [ + { + "mime_type": "image/jpeg", + "uri": "https://ipfs.desmos.network/ipfs/QmPz5DjqqayCHMWCHKAjavRoqJi99sfAx9kqcm6dc1VedS" + } + ], + "message": "Happy Easter decentralized friends 🐰🎈🎉", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-20T09:10:36.624Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "fef043036a46ea94e601cf03c4040d6eaf6524241a58f4f7e2d4a24c6ee6578f", + "last_edited": "0001-01-01T00:00:00Z", + "message": "New post", + "parent_id": "", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2020-01-24T13:58:13.026Z", + "creator": "desmos16f9wz7yg44pjfhxyn22kycs0qjy778ng877usl", + "id": "ff19f4170df1ebb3d68d3730fc7496ae7b1959d24cf33005ddf7d6e84c6de7ca", + "last_edited": "0001-01-01T00:00:00Z", + "message": "I am! 🍰🍰🍰", + "parent_id": "4618b62d42062df82a025ae0ed71829ba5c93523bbb99b3bed8c042099fe06c9", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88" + }, + { + "allows_comments": true, + "created": "2019-12-20T12:30:14.03384Z", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "id": "ff9c05b9525c75b769bf06a4def0c8346a7aa4dd393c43b9c7bcca03816a2c5e", + "last_edited": "0001-01-01T00:00:00Z", + "message": "Hello, Desmos!", + "parent_id": "", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + ], + "registered_reactions": [ + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "7279b8205d3e8256918aeda948cc926de9ed872b7de7ed34e2de246304eda0cc", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "97ea6c072211c4df2762b66a793ef01a48a03b17a6d0f160b1364eac45f8ab3c", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":+1:", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "value": "👍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":100:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💯" + }, + { + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "shortcode": ":alien:", + "subspace": "61d7cb6d9c37b13b621dc6cb7c104ea75b84c1a9e7abf627e1c898c42af287ba", + "value": "https://shorturl.at/cKX19" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":astonished:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😲" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":blush:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😊" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":cat:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🐱" + }, + { + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "shortcode": ":choco:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/iksAN" + }, + { + "creator": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "shortcode": ":content:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/eHKQ1" + }, + { + "creator": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "shortcode": ":cool:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://imgur.com/KrQks6T" + }, + { + "creator": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "shortcode": ":des:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://imgur.com/jsw6iBv" + }, + { + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "shortcode": ":dev:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/MUZ49" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":dizzy:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💫" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":dizzy_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😵" + }, + { + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "shortcode": ":dog:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/ipyQS" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":dove:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🕊" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":dragon:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🐉" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":face_vomiting:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤮" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":face_with_head-bandage:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤕" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":face_with_rolling_eyes:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙄" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":feet:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🐾" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":fire:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "🔥" + }, + { + "creator": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "shortcode": ":fire:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/kHY38" + }, + { + "creator": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "shortcode": ":fire:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36f", + "value": "https://shorturl.at/epMTX" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":flag_ceuta__melilla:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🇪🇦" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":grin:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😁" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":grinning:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😀" + }, + { + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "shortcode": ":grinning:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://emojipedia.org/grinning-face/" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":hankey:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "💩" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":headphones:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🎧" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "601af7eb15aafa4ad5f927797808923d5b42a5baa2cfad5286c6831ae556c560", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "6ff67fe04c7dadd1ad005667b49d01980d561a2c6941ad45dc9b2e8181c89497", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "89b95d1d9870fcec00dee38f69f2abf42248d1dabdf1f8b09215bdb4827df286", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart:", + "subspace": "efa8de93093dc20a40c6422cfa77931867ec0250567c04e476bbc02327206a75", + "value": "❤" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart_eyes:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😍" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heart_eyes_cat:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😻" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":heartpulse:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💗" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":horse_racing:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🏇" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":hugging_face:", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "value": "🤗" + }, + { + "creator": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "shortcode": ":inchain:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://i.imgur.com/LI85WjO.jpg" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":innocent:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😇" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":joy:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😂" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":laughing:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😆" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":lion:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🦁" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":lollipop:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🍭" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":mask:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😷" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":money-mouth_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤑" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":moon_cake:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🥮" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":muscle:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "💪" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":muscle:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💪" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":orange_heart:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🧡" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":partying_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🥳" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":pensive:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😔" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rabbit:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🐰" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rainbow:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🌈" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":relaxed:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "☺" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rocket:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🚀" + }, + { + "creator": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "shortcode": ":rocket:", + "subspace": "c58dd0a3760008c901839e21a0a5ae6cc92e3765513823ca9553e6ef5f733b36", + "value": "https://shorturl.at/sBEFT" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rolling_on_the_floor_laughing:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤣" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rolling_on_the_floor_laughing:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🤣" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":rose:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🌹" + }, + { + "creator": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "shortcode": ":simply-vc:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://s3.amazonaws.com/keybase_processed_uploads/832fd8e95710fb345f084afb8aeace05_360_360.jpg" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":skull_and_crossbones:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "☠" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":slightly_smiling_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙂" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":slightly_smiling_face:", + "subspace": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "value": "🙂" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":smile:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😄" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":smiley:", + "subspace": "1c2fcf9184f5ce3cdea8aad31b11d3c405a0a95e00c0c258d50ae83c0892c143", + "value": "😃" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":smiley:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😃" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":smiling_face_with_hearts:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🥰" + }, + { + "creator": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "shortcode": ":snowman:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://www.emoji.co.uk/files/microsoft-emojis/animals-nature-windows10/8786-snowman.png" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":space_invader:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "👾" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":sparkling_heart:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "💖" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":speak_no_evil:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙊" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":star-struck:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤩" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":star-struck:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "🤩" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":sunglasses:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😎" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":sunny:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "☀" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":sweat_smile:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😅" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":tada:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🎉" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":thinking_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤔" + }, + { + "creator": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "shortcode": ":this-is-fine-fire-2:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/fmLX1" + }, + { + "creator": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "shortcode": ":this-is-fine-fire:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/fmLX1" + }, + { + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "shortcode": ":this_is_m24_logo:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://shorturl.at/ehNQ8" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":tulip:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🌷" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":upside-down_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙃" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":v:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "✌" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":wink:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😉" + }, + { + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "shortcode": ":wink:", + "subspace": "4e188d9c17150037d5199bbdb91ae1eb2a78a15aca04cb35530cccb81494b36e", + "value": "https://emojipedia.org/winking-face/" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":woman_raising_hand:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🙋‍♀" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":yum:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "😋" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":zany_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤪" + }, + { + "creator": "desmos15383h963wytr23k5dwju4qr997zlettlsfgvf7", + "shortcode": ":zipper-mouth_face:", + "subspace": "2bdf5932925584b9a86470bea60adce69041608a447f84a3317723aa5678ec88", + "value": "🤐" + } + ], + "users_poll_answers": { + "03aef4fb393caad1f0ccf66246d0e930a97b316d30f19c22b65b1c6f87eda69b": [ + { + "answers": [ + "1" + ], + "user": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u" + }, + { + "answers": [ + "0" + ], + "user": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys" + } + ], + "1d3d82c03c623e924808d0c93b25cab75ca229e121f769a45f0095385ed2bff4": [ + { + "answers": [ + "0" + ], + "user": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0" + }, + { + "answers": [ + "0" + ], + "user": "desmos1wmud8lgkzusxwr3s9htdaggth7rjtxytw8em4d" + } + ], + "41b9c2bc13fb40b57a4fb99000f37467b982ac78011af504df612f874276eece": [ + { + "answers": [ + "0" + ], + "user": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr" + } + ], + "46a862c166f1c9fe541e42e0c1c1aa9adf8aa812ec90076aec4322b25f9f59b5": [ + { + "answers": [ + "0" + ], + "user": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m" + } + ], + "48cd7144d6c3280be5020cb8d40812894edf859dc7645c907cb9313a627f7050": [ + { + "answers": [ + "2" + ], + "user": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r" + } + ], + "4cea3a170718b2cb9867bc50f7d4c9f2318339263f1bea94e09690a16cc13149": [ + { + "answers": [ + "1" + ], + "user": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2" + } + ], + "519213999810445110bdafb80a6b5c12dea3cc0d3a68dd1f972fb5816c4eebdd": [ + { + "answers": [ + "0" + ], + "user": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl" + } + ], + "51c7f17dc7342451e98b2c0f143a6930b22a6f95e443c24f966071a57886c48b": [ + { + "answers": [ + "1" + ], + "user": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr" + } + ], + "59235f11dac3f7af2237ac1a325e4fb216fcb753f8f6c4ca71f004286bc1dd22": [ + { + "answers": [ + "1" + ], + "user": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg" + } + ], + "5dcf020aab00542a99c123fedcbbf2c83bca0a412a9b7179bfe1d11d387817b6": [ + { + "answers": [ + "0" + ], + "user": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx" + } + ], + "6a2d7b53a1fb31cdd57b5542aa36d91feb17a09dab6ed0a043d7cd6a704f40da": [ + { + "answers": [ + "0" + ], + "user": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz" + }, + { + "answers": [ + "1" + ], + "user": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3" + } + ], + "78b1c48557424fc8b47aa228e71e1b4b526b7efe10c63378a6e5ac828f1ac0e5": [ + { + "answers": [ + "0" + ], + "user": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj" + } + ], + "81160ce863272960fbf5a88a831e6f0a0bcdd3c02aad3989f98dee39ac53d007": [ + { + "answers": [ + "0" + ], + "user": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp" + } + ], + "aedd58749b14053baa507bc84760fe9a15dfb210e6e016d2cdf1095e49d618d5": [ + { + "answers": [ + "1" + ], + "user": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d" + }, + { + "answers": [ + "1" + ], + "user": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc" + }, + { + "answers": [ + "2" + ], + "user": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn" + }, + { + "answers": [ + "2" + ], + "user": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u" + } + ], + "ba73f3622933abdd6ff22e11642260cb29cd1a13651faa0a0d6e277923adcd0f": [ + { + "answers": [ + "1" + ], + "user": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa" + }, + { + "answers": [ + "1" + ], + "user": "desmos1fc3mdf0ue2f4suyg5vjj75jtaer0cl0dgqvy6u" + } + ], + "c643dd0c40b89e46f6dbb91d372f3b8e05cb39a56c8728e17d3ef85375e9fa64": [ + { + "answers": [ + "5" + ], + "user": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra" + } + ], + "d0fb59f466329ac34cad828d8d34ca840f1606ed40212bf4447d568a2fec7bb9": [ + { + "answers": [ + "2" + ], + "user": "desmos16t82uc3cs0tszpcx363rwk8yx6dthcyrjcn9d4" + } + ], + "d26028d560ea75e5841a311cfc99eaf932c163865f4a274a084981fb2e3b4af3": [ + { + "answers": [ + "0" + ], + "user": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6" + } + ], + "d521ed763fb2384971c9a854a8b091952bf50e010476fc5047b2085a95060e75": [ + { + "answers": [ + "1" + ], + "user": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e" + } + ], + "dc80300efd795d96e060cf1d8583ed442aca4eb8ad140af8f38ac709a3fd3454": [ + { + "answers": [ + "1" + ], + "user": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj" + } + ], + "dce6de6dfcdc03735d760b03cf8666160353271a10916daac5cf66aa339b24ba": [ + { + "answers": [ + "1" + ], + "user": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm" + }, + { + "answers": [ + "0" + ], + "user": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd" + } + ] + } + }, + "profile": { + "profiles": [ + { + "creator": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "moniker": "mike.snowman", + "name": "Mike", + "surname": "Snowman" + }, + { + "bio": "Desmos validator", + "creator": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "moniker": "desmosval", + "name": "desmos", + "pictures": { + "cover": "https://imgur.com/H0Ynz1M", + "profile": "https://imgur.com/RWNuDbt" + }, + "surname": "val" + }, + { + "bio": "KalpaTech dev guy", + "creator": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "moniker": "GOLDel | KalpaTech", + "name": "Aurel", + "pictures": { + "cover": "https://shorturl.at/fuCLM", + "profile": "https://shorturl.at/bvxX4" + }, + "surname": "Simion" + }, + { + "bio": "Cosmostation Developer", + "creator": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "moniker": "JayB.Kim", + "name": "JayB", + "pictures": { + "cover": "https://github.com/kogisin", + "profile": "https://github.com/kogisin" + }, + "surname": "Kim" + }, + { + "bio": "blockchain developer | team blocksccape", + "creator": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "moniker": "marcel.mws", + "name": "Marcel", + "pictures": { + "cover": "https://keybase.io/blockscapeval", + "profile": "https://keybase.io/blockscapeval" + }, + "surname": "mws" + }, + { + "bio": "My initial name is S.", + "creator": "desmos1d4kmuml2m6254r2amhgd6p5xaqyy5fu0pcha72", + "moniker": "IamS", + "name": "Iam", + "pictures": { + "cover": "https://i.ibb.co/KyBZFp8/20200508-122959.png", + "profile": "https://i.ibb.co/KyBZFp8/20200508-122959.png" + }, + "surname": "S." + }, + { + "bio": "Hi, I am a freelancer looking to explore decentralized social networks", + "creator": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "moniker": "Cookpro.Man", + "name": "Cookpro", + "pictures": { + "cover": "https://shorturl.at/oIJKU", + "profile": "https://shorturl.at/oIJKU" + }, + "surname": "Man" + }, + { + "bio": "DesmosIW testnet validator", + "creator": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "moniker": "desmosIW", + "name": "desmos", + "pictures": { + "cover": "https://imgur.com/5Nx5vdT", + "profile": "https://imgur.com/jsw6iBv" + }, + "surname": "IW" + }, + { + "bio": "Simply VC runs highly reliable and secure infrastructure in our own datacentre in Malta, built with the aim of supporting the growth of the blockchain ecosystem.", + "creator": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "moniker": "simply.vc", + "name": "Simply VC", + "pictures": { + "cover": "https://pbs.twimg.com/profile_banners/933276900440641537/1565686922/1500x500", + "profile": "https://pbs.twimg.com/profile_images/1161203324630249472/BwmjS8IM_400x400.jpg" + } + }, + { + "bio": "Validator", + "creator": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "moniker": "Masternode24.de", + "name": "Alexander", + "pictures": { + "cover": "https://shorturl.at/fAJMX", + "profile": "https://shorturl.at/jloKX" + }, + "surname": "Buterus" + }, + { + "bio": "Desmos Architect", + "creator": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "moniker": "ChainodeTech", + "name": "Ionut", + "pictures": { + "cover": "https://www.chainode.tech/img/logo.svg", + "profile": "https://www.chainode.tech/img/team/Ionut.png" + }, + "surname": "S." + }, + { + "creator": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "moniker": "kappa", + "name": "Kaustubh", + "surname": "Kapatral" + }, + { + "bio": "Desmos blogger", + "creator": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "moniker": "Cyberili", + "name": "Cyberili", + "pictures": { + "cover": "https://example.com/cover.jpg", + "profile": "https://example.com/profile.jpg" + }, + "surname": "Ili" + }, + { + "bio": "Trusted \u0026 Secure validator", + "creator": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "moniker": "InchainWorks", + "name": "Inchain", + "pictures": { + "cover": "https://imgur.com/SVjiFdr", + "profile": "https://i.imgur.com/LI85WjO.jpg" + }, + "surname": "Works" + }, + { + "bio": "TBD", + "creator": "desmos1l6kpsvqa0yvccd93g5epm5jacgsrj2ktatf0lj", + "moniker": "Mr_S", + "name": "Mr S", + "pictures": { + "cover": "https://dummyimage.com/1200x800/000/", + "profile": "https://dummyimage.com/600x400/000/fff\u0026text=Mr.+S." + } + } + ] + }, + "slashing": { + "missed_blocks": { + "desmosvalcons13tssslsz0wn0jw2whypvyy57pyxt7aksul4edu": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons15kc3sr8re2xl5mj5df5dq543hz28mjkg8h5qgj": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons16e82c0qtlg8fsazgrmkncvfphmglpejg6gatz5": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons16fww3gd0p2sgunwexympn5x8cxjartt456a4mx": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1785njjxnay4pwd8w592xdx4rqptdy5h3cvr0a2": [ + { + "index": "6", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + } + ], + "desmosvalcons17txgcuy9g4jy59en599anqy086h3h22l2gmt27": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons17uwyf238ykjg2at63uc5nm2k7xqxyxk37f8zkd": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons19pc8sk3kqsqc83f57m65xwjvraq8l26ftfe0xr": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1a48zyjsq5n07e0jqvxjup4vge4pvxdt9unkce0": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1aak9vdqqn35wc655zwl29wtfnsp8cw9gu2awvt": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "704", + "missed": false + } + ], + "desmosvalcons1adduk8rnjd642axkhavlnan2huxfhlmdyar0ly": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1arakyvwlhac9flyves3c07634cxsulrdjzcwne": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1c29eyczh5lw4npe0a9n40nm5g299fq8nt5lerw": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1crr2fr40gj3hqqq7kcn84ec84r7ykwm7mc7d7x": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1d8pcgv38fkczqk8ka543eyc5tx6emwsjslmde0": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1fxl3av27g93nw8jqjnm2344jffs7cmgu43676a": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1g5895s4my026q6xmjcullh2smw4tf8w93fztsn": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1hkvz89vzj3y44d9fz0k4yqw5lv4ah84vznqgsp": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1jk4x2969x7wd680zw6alyke8cftlxngvlww57t": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1jk63tv9pplzs8l7gqk308mchh7p70eptjpzx96": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + } + ], + "desmosvalcons1jmp6rwg46c6x2nl3nrnczudzg9zdlf39d34ttl": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "21", + "missed": false + } + ], + "desmosvalcons1k0nxu0r7rssxf86wyemn369yazzjry7dsfmcs0": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1k6wks6q2gr467n8te3v76k4paf9xylhrq3rgzm": [ + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "605", + "missed": false + } + ], + "desmosvalcons1ktp5mu8h28mxhrkygw7mys8tl5f67yv46tdzvy": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + }, + { + "index": "2", + "missed": true + }, + { + "index": "3", + "missed": true + }, + { + "index": "4", + "missed": true + }, + { + "index": "5", + "missed": true + }, + { + "index": "6", + "missed": true + }, + { + "index": "7", + "missed": true + }, + { + "index": "8", + "missed": true + }, + { + "index": "9", + "missed": true + }, + { + "index": "10", + "missed": true + }, + { + "index": "11", + "missed": true + }, + { + "index": "12", + "missed": true + }, + { + "index": "13", + "missed": true + }, + { + "index": "14", + "missed": true + }, + { + "index": "15", + "missed": true + }, + { + "index": "16", + "missed": true + }, + { + "index": "17", + "missed": true + }, + { + "index": "18", + "missed": true + }, + { + "index": "19", + "missed": true + }, + { + "index": "20", + "missed": true + }, + { + "index": "21", + "missed": true + }, + { + "index": "22", + "missed": true + }, + { + "index": "23", + "missed": true + }, + { + "index": "24", + "missed": true + }, + { + "index": "25", + "missed": true + }, + { + "index": "26", + "missed": true + }, + { + "index": "27", + "missed": true + }, + { + "index": "28", + "missed": true + }, + { + "index": "29", + "missed": true + }, + { + "index": "30", + "missed": true + }, + { + "index": "31", + "missed": true + }, + { + "index": "32", + "missed": true + }, + { + "index": "33", + "missed": true + }, + { + "index": "34", + "missed": true + }, + { + "index": "35", + "missed": true + }, + { + "index": "36", + "missed": true + }, + { + "index": "37", + "missed": true + }, + { + "index": "38", + "missed": true + }, + { + "index": "39", + "missed": true + }, + { + "index": "40", + "missed": true + }, + { + "index": "41", + "missed": true + }, + { + "index": "42", + "missed": true + }, + { + "index": "43", + "missed": true + }, + { + "index": "44", + "missed": true + }, + { + "index": "45", + "missed": true + }, + { + "index": "46", + "missed": true + }, + { + "index": "47", + "missed": true + }, + { + "index": "48", + "missed": true + }, + { + "index": "49", + "missed": true + }, + { + "index": "50", + "missed": true + }, + { + "index": "51", + "missed": true + }, + { + "index": "52", + "missed": true + }, + { + "index": "53", + "missed": true + }, + { + "index": "54", + "missed": true + }, + { + "index": "55", + "missed": true + }, + { + "index": "56", + "missed": true + }, + { + "index": "57", + "missed": true + }, + { + "index": "58", + "missed": true + }, + { + "index": "59", + "missed": true + }, + { + "index": "60", + "missed": true + }, + { + "index": "61", + "missed": true + }, + { + "index": "62", + "missed": true + }, + { + "index": "63", + "missed": true + }, + { + "index": "64", + "missed": true + }, + { + "index": "65", + "missed": true + }, + { + "index": "66", + "missed": true + }, + { + "index": "67", + "missed": true + }, + { + "index": "68", + "missed": true + }, + { + "index": "69", + "missed": true + }, + { + "index": "70", + "missed": true + }, + { + "index": "71", + "missed": true + }, + { + "index": "72", + "missed": true + }, + { + "index": "73", + "missed": true + }, + { + "index": "74", + "missed": true + }, + { + "index": "75", + "missed": true + }, + { + "index": "76", + "missed": true + }, + { + "index": "77", + "missed": true + }, + { + "index": "78", + "missed": true + }, + { + "index": "79", + "missed": true + }, + { + "index": "80", + "missed": true + }, + { + "index": "81", + "missed": true + }, + { + "index": "82", + "missed": true + }, + { + "index": "83", + "missed": true + }, + { + "index": "84", + "missed": true + }, + { + "index": "85", + "missed": true + }, + { + "index": "86", + "missed": true + }, + { + "index": "87", + "missed": true + }, + { + "index": "88", + "missed": true + }, + { + "index": "89", + "missed": true + }, + { + "index": "90", + "missed": true + }, + { + "index": "91", + "missed": true + }, + { + "index": "92", + "missed": true + }, + { + "index": "93", + "missed": true + }, + { + "index": "94", + "missed": true + }, + { + "index": "95", + "missed": true + }, + { + "index": "96", + "missed": true + }, + { + "index": "97", + "missed": true + }, + { + "index": "98", + "missed": true + }, + { + "index": "99", + "missed": true + }, + { + "index": "100", + "missed": true + }, + { + "index": "101", + "missed": true + }, + { + "index": "102", + "missed": true + }, + { + "index": "103", + "missed": true + }, + { + "index": "104", + "missed": true + }, + { + "index": "105", + "missed": true + }, + { + "index": "106", + "missed": true + }, + { + "index": "107", + "missed": true + }, + { + "index": "108", + "missed": true + }, + { + "index": "109", + "missed": true + }, + { + "index": "110", + "missed": true + }, + { + "index": "111", + "missed": true + }, + { + "index": "112", + "missed": true + }, + { + "index": "113", + "missed": true + }, + { + "index": "114", + "missed": true + }, + { + "index": "115", + "missed": true + }, + { + "index": "116", + "missed": true + }, + { + "index": "117", + "missed": true + }, + { + "index": "118", + "missed": true + }, + { + "index": "119", + "missed": true + }, + { + "index": "120", + "missed": true + }, + { + "index": "121", + "missed": true + }, + { + "index": "122", + "missed": true + }, + { + "index": "123", + "missed": true + }, + { + "index": "124", + "missed": true + }, + { + "index": "125", + "missed": true + }, + { + "index": "126", + "missed": true + }, + { + "index": "127", + "missed": true + }, + { + "index": "128", + "missed": true + }, + { + "index": "129", + "missed": true + }, + { + "index": "130", + "missed": true + }, + { + "index": "131", + "missed": true + }, + { + "index": "132", + "missed": true + }, + { + "index": "133", + "missed": true + }, + { + "index": "134", + "missed": true + }, + { + "index": "135", + "missed": true + }, + { + "index": "136", + "missed": true + }, + { + "index": "137", + "missed": true + }, + { + "index": "138", + "missed": true + }, + { + "index": "139", + "missed": true + }, + { + "index": "140", + "missed": true + }, + { + "index": "141", + "missed": true + }, + { + "index": "142", + "missed": true + }, + { + "index": "143", + "missed": true + }, + { + "index": "144", + "missed": true + }, + { + "index": "145", + "missed": true + }, + { + "index": "146", + "missed": true + }, + { + "index": "147", + "missed": true + }, + { + "index": "148", + "missed": true + }, + { + "index": "149", + "missed": true + }, + { + "index": "150", + "missed": true + }, + { + "index": "151", + "missed": true + }, + { + "index": "152", + "missed": true + }, + { + "index": "153", + "missed": true + }, + { + "index": "154", + "missed": true + }, + { + "index": "155", + "missed": true + }, + { + "index": "156", + "missed": true + }, + { + "index": "157", + "missed": true + }, + { + "index": "158", + "missed": true + }, + { + "index": "159", + "missed": true + }, + { + "index": "160", + "missed": true + }, + { + "index": "161", + "missed": true + }, + { + "index": "162", + "missed": true + }, + { + "index": "163", + "missed": true + }, + { + "index": "164", + "missed": true + }, + { + "index": "165", + "missed": true + }, + { + "index": "166", + "missed": true + }, + { + "index": "167", + "missed": true + }, + { + "index": "168", + "missed": true + }, + { + "index": "169", + "missed": true + }, + { + "index": "170", + "missed": true + }, + { + "index": "171", + "missed": true + }, + { + "index": "172", + "missed": true + }, + { + "index": "173", + "missed": true + }, + { + "index": "174", + "missed": true + }, + { + "index": "175", + "missed": true + }, + { + "index": "176", + "missed": true + }, + { + "index": "177", + "missed": true + }, + { + "index": "178", + "missed": true + }, + { + "index": "179", + "missed": true + }, + { + "index": "180", + "missed": true + }, + { + "index": "181", + "missed": true + }, + { + "index": "182", + "missed": true + }, + { + "index": "183", + "missed": true + }, + { + "index": "184", + "missed": true + }, + { + "index": "185", + "missed": true + }, + { + "index": "186", + "missed": true + }, + { + "index": "187", + "missed": true + }, + { + "index": "188", + "missed": true + }, + { + "index": "189", + "missed": true + }, + { + "index": "190", + "missed": true + }, + { + "index": "191", + "missed": true + }, + { + "index": "192", + "missed": true + }, + { + "index": "193", + "missed": true + }, + { + "index": "194", + "missed": true + }, + { + "index": "195", + "missed": true + }, + { + "index": "196", + "missed": true + }, + { + "index": "197", + "missed": true + }, + { + "index": "198", + "missed": true + }, + { + "index": "199", + "missed": true + }, + { + "index": "200", + "missed": true + }, + { + "index": "201", + "missed": true + }, + { + "index": "202", + "missed": true + }, + { + "index": "203", + "missed": true + }, + { + "index": "204", + "missed": true + }, + { + "index": "205", + "missed": true + }, + { + "index": "206", + "missed": true + }, + { + "index": "207", + "missed": true + }, + { + "index": "208", + "missed": true + }, + { + "index": "209", + "missed": true + }, + { + "index": "210", + "missed": true + }, + { + "index": "211", + "missed": true + }, + { + "index": "212", + "missed": true + }, + { + "index": "213", + "missed": true + }, + { + "index": "214", + "missed": true + }, + { + "index": "215", + "missed": true + }, + { + "index": "216", + "missed": true + }, + { + "index": "217", + "missed": true + }, + { + "index": "218", + "missed": true + }, + { + "index": "219", + "missed": true + }, + { + "index": "220", + "missed": true + }, + { + "index": "221", + "missed": true + }, + { + "index": "222", + "missed": true + }, + { + "index": "223", + "missed": true + }, + { + "index": "224", + "missed": true + }, + { + "index": "225", + "missed": true + }, + { + "index": "226", + "missed": true + }, + { + "index": "227", + "missed": true + }, + { + "index": "228", + "missed": true + }, + { + "index": "229", + "missed": true + }, + { + "index": "230", + "missed": true + }, + { + "index": "231", + "missed": true + }, + { + "index": "232", + "missed": true + }, + { + "index": "233", + "missed": true + }, + { + "index": "234", + "missed": true + }, + { + "index": "235", + "missed": true + }, + { + "index": "236", + "missed": true + }, + { + "index": "237", + "missed": true + }, + { + "index": "238", + "missed": true + }, + { + "index": "239", + "missed": true + }, + { + "index": "240", + "missed": true + }, + { + "index": "241", + "missed": true + }, + { + "index": "242", + "missed": true + }, + { + "index": "243", + "missed": true + }, + { + "index": "244", + "missed": true + }, + { + "index": "245", + "missed": true + }, + { + "index": "246", + "missed": true + }, + { + "index": "247", + "missed": true + }, + { + "index": "248", + "missed": true + }, + { + "index": "249", + "missed": true + }, + { + "index": "250", + "missed": true + }, + { + "index": "251", + "missed": true + }, + { + "index": "252", + "missed": true + }, + { + "index": "253", + "missed": true + }, + { + "index": "254", + "missed": true + }, + { + "index": "255", + "missed": true + }, + { + "index": "256", + "missed": true + }, + { + "index": "257", + "missed": true + }, + { + "index": "258", + "missed": true + }, + { + "index": "259", + "missed": true + }, + { + "index": "260", + "missed": true + }, + { + "index": "261", + "missed": true + }, + { + "index": "262", + "missed": true + }, + { + "index": "263", + "missed": true + }, + { + "index": "264", + "missed": true + }, + { + "index": "265", + "missed": true + }, + { + "index": "266", + "missed": true + }, + { + "index": "267", + "missed": true + }, + { + "index": "268", + "missed": true + }, + { + "index": "269", + "missed": true + }, + { + "index": "270", + "missed": true + }, + { + "index": "271", + "missed": true + }, + { + "index": "272", + "missed": true + }, + { + "index": "273", + "missed": true + }, + { + "index": "274", + "missed": true + }, + { + "index": "275", + "missed": true + }, + { + "index": "276", + "missed": true + }, + { + "index": "277", + "missed": true + }, + { + "index": "278", + "missed": true + }, + { + "index": "279", + "missed": true + }, + { + "index": "280", + "missed": true + }, + { + "index": "281", + "missed": true + }, + { + "index": "282", + "missed": true + }, + { + "index": "283", + "missed": true + }, + { + "index": "284", + "missed": true + }, + { + "index": "285", + "missed": true + }, + { + "index": "286", + "missed": true + }, + { + "index": "287", + "missed": true + }, + { + "index": "288", + "missed": true + }, + { + "index": "289", + "missed": true + }, + { + "index": "290", + "missed": true + }, + { + "index": "291", + "missed": true + }, + { + "index": "292", + "missed": true + }, + { + "index": "293", + "missed": true + }, + { + "index": "294", + "missed": true + }, + { + "index": "295", + "missed": true + }, + { + "index": "296", + "missed": true + }, + { + "index": "297", + "missed": true + }, + { + "index": "298", + "missed": true + }, + { + "index": "299", + "missed": true + }, + { + "index": "300", + "missed": true + }, + { + "index": "301", + "missed": true + }, + { + "index": "302", + "missed": true + }, + { + "index": "303", + "missed": true + }, + { + "index": "304", + "missed": true + }, + { + "index": "305", + "missed": true + }, + { + "index": "306", + "missed": true + }, + { + "index": "307", + "missed": true + }, + { + "index": "308", + "missed": true + }, + { + "index": "309", + "missed": true + }, + { + "index": "310", + "missed": true + }, + { + "index": "311", + "missed": true + }, + { + "index": "312", + "missed": true + }, + { + "index": "313", + "missed": true + }, + { + "index": "314", + "missed": true + }, + { + "index": "315", + "missed": true + }, + { + "index": "316", + "missed": true + }, + { + "index": "317", + "missed": true + }, + { + "index": "318", + "missed": true + }, + { + "index": "319", + "missed": true + }, + { + "index": "320", + "missed": true + }, + { + "index": "321", + "missed": true + }, + { + "index": "322", + "missed": true + }, + { + "index": "323", + "missed": true + }, + { + "index": "324", + "missed": true + }, + { + "index": "325", + "missed": true + }, + { + "index": "326", + "missed": true + }, + { + "index": "327", + "missed": true + }, + { + "index": "328", + "missed": true + }, + { + "index": "329", + "missed": true + }, + { + "index": "330", + "missed": true + }, + { + "index": "331", + "missed": true + }, + { + "index": "332", + "missed": true + }, + { + "index": "333", + "missed": true + }, + { + "index": "334", + "missed": true + }, + { + "index": "335", + "missed": true + }, + { + "index": "336", + "missed": true + }, + { + "index": "337", + "missed": true + }, + { + "index": "338", + "missed": true + }, + { + "index": "339", + "missed": true + }, + { + "index": "340", + "missed": true + }, + { + "index": "341", + "missed": true + }, + { + "index": "342", + "missed": true + }, + { + "index": "343", + "missed": true + }, + { + "index": "344", + "missed": true + }, + { + "index": "345", + "missed": true + }, + { + "index": "346", + "missed": true + }, + { + "index": "347", + "missed": true + }, + { + "index": "348", + "missed": true + }, + { + "index": "349", + "missed": true + }, + { + "index": "350", + "missed": true + }, + { + "index": "351", + "missed": true + }, + { + "index": "352", + "missed": true + }, + { + "index": "353", + "missed": true + }, + { + "index": "354", + "missed": true + }, + { + "index": "355", + "missed": true + }, + { + "index": "356", + "missed": true + }, + { + "index": "357", + "missed": true + }, + { + "index": "358", + "missed": true + }, + { + "index": "359", + "missed": true + }, + { + "index": "360", + "missed": true + }, + { + "index": "361", + "missed": true + }, + { + "index": "362", + "missed": true + }, + { + "index": "363", + "missed": true + }, + { + "index": "364", + "missed": true + }, + { + "index": "365", + "missed": true + }, + { + "index": "366", + "missed": true + }, + { + "index": "367", + "missed": true + }, + { + "index": "368", + "missed": true + }, + { + "index": "369", + "missed": true + }, + { + "index": "370", + "missed": true + }, + { + "index": "371", + "missed": true + }, + { + "index": "372", + "missed": true + }, + { + "index": "373", + "missed": true + }, + { + "index": "374", + "missed": true + }, + { + "index": "375", + "missed": true + }, + { + "index": "376", + "missed": true + }, + { + "index": "377", + "missed": true + }, + { + "index": "378", + "missed": true + }, + { + "index": "379", + "missed": true + }, + { + "index": "380", + "missed": true + }, + { + "index": "381", + "missed": true + }, + { + "index": "382", + "missed": true + }, + { + "index": "383", + "missed": true + }, + { + "index": "384", + "missed": true + }, + { + "index": "385", + "missed": true + }, + { + "index": "386", + "missed": true + }, + { + "index": "387", + "missed": true + }, + { + "index": "388", + "missed": true + }, + { + "index": "389", + "missed": true + }, + { + "index": "390", + "missed": true + }, + { + "index": "391", + "missed": true + }, + { + "index": "392", + "missed": true + }, + { + "index": "393", + "missed": true + }, + { + "index": "394", + "missed": true + }, + { + "index": "395", + "missed": true + }, + { + "index": "396", + "missed": true + }, + { + "index": "397", + "missed": true + }, + { + "index": "398", + "missed": true + }, + { + "index": "399", + "missed": true + }, + { + "index": "400", + "missed": true + }, + { + "index": "401", + "missed": true + }, + { + "index": "402", + "missed": true + }, + { + "index": "403", + "missed": true + }, + { + "index": "404", + "missed": true + }, + { + "index": "405", + "missed": true + }, + { + "index": "406", + "missed": true + }, + { + "index": "407", + "missed": true + }, + { + "index": "408", + "missed": true + }, + { + "index": "409", + "missed": true + }, + { + "index": "410", + "missed": true + }, + { + "index": "411", + "missed": true + }, + { + "index": "412", + "missed": true + }, + { + "index": "413", + "missed": true + }, + { + "index": "414", + "missed": true + }, + { + "index": "415", + "missed": true + }, + { + "index": "416", + "missed": true + }, + { + "index": "417", + "missed": true + }, + { + "index": "418", + "missed": true + }, + { + "index": "419", + "missed": true + }, + { + "index": "420", + "missed": true + }, + { + "index": "421", + "missed": true + }, + { + "index": "422", + "missed": true + }, + { + "index": "423", + "missed": true + }, + { + "index": "424", + "missed": true + }, + { + "index": "425", + "missed": true + }, + { + "index": "426", + "missed": true + }, + { + "index": "427", + "missed": true + }, + { + "index": "428", + "missed": true + }, + { + "index": "429", + "missed": true + }, + { + "index": "430", + "missed": true + }, + { + "index": "431", + "missed": true + }, + { + "index": "432", + "missed": true + }, + { + "index": "433", + "missed": true + }, + { + "index": "434", + "missed": true + }, + { + "index": "435", + "missed": true + }, + { + "index": "436", + "missed": true + }, + { + "index": "437", + "missed": true + }, + { + "index": "438", + "missed": true + }, + { + "index": "439", + "missed": true + }, + { + "index": "440", + "missed": true + }, + { + "index": "441", + "missed": true + }, + { + "index": "442", + "missed": true + }, + { + "index": "443", + "missed": true + }, + { + "index": "444", + "missed": true + }, + { + "index": "445", + "missed": true + }, + { + "index": "446", + "missed": true + }, + { + "index": "447", + "missed": true + }, + { + "index": "448", + "missed": true + }, + { + "index": "449", + "missed": true + }, + { + "index": "450", + "missed": true + }, + { + "index": "451", + "missed": true + }, + { + "index": "452", + "missed": true + }, + { + "index": "453", + "missed": true + }, + { + "index": "454", + "missed": true + }, + { + "index": "455", + "missed": true + }, + { + "index": "456", + "missed": true + }, + { + "index": "457", + "missed": true + }, + { + "index": "458", + "missed": true + }, + { + "index": "459", + "missed": true + }, + { + "index": "460", + "missed": true + }, + { + "index": "461", + "missed": true + }, + { + "index": "462", + "missed": true + }, + { + "index": "463", + "missed": true + }, + { + "index": "464", + "missed": true + }, + { + "index": "465", + "missed": true + }, + { + "index": "466", + "missed": true + }, + { + "index": "467", + "missed": true + }, + { + "index": "468", + "missed": true + }, + { + "index": "469", + "missed": true + }, + { + "index": "470", + "missed": true + }, + { + "index": "471", + "missed": true + }, + { + "index": "472", + "missed": true + }, + { + "index": "473", + "missed": true + }, + { + "index": "474", + "missed": true + }, + { + "index": "475", + "missed": true + }, + { + "index": "476", + "missed": true + }, + { + "index": "477", + "missed": true + }, + { + "index": "478", + "missed": true + }, + { + "index": "479", + "missed": true + }, + { + "index": "480", + "missed": true + }, + { + "index": "481", + "missed": true + }, + { + "index": "482", + "missed": true + }, + { + "index": "483", + "missed": true + }, + { + "index": "484", + "missed": true + }, + { + "index": "485", + "missed": true + }, + { + "index": "486", + "missed": true + }, + { + "index": "487", + "missed": true + }, + { + "index": "488", + "missed": true + }, + { + "index": "489", + "missed": true + }, + { + "index": "490", + "missed": true + }, + { + "index": "491", + "missed": true + }, + { + "index": "492", + "missed": true + }, + { + "index": "493", + "missed": true + }, + { + "index": "494", + "missed": true + }, + { + "index": "495", + "missed": true + }, + { + "index": "496", + "missed": true + }, + { + "index": "497", + "missed": true + }, + { + "index": "498", + "missed": true + }, + { + "index": "499", + "missed": true + }, + { + "index": "500", + "missed": true + }, + { + "index": "501", + "missed": true + }, + { + "index": "502", + "missed": true + }, + { + "index": "503", + "missed": true + }, + { + "index": "504", + "missed": true + }, + { + "index": "505", + "missed": true + }, + { + "index": "506", + "missed": true + }, + { + "index": "507", + "missed": true + }, + { + "index": "508", + "missed": true + }, + { + "index": "509", + "missed": true + }, + { + "index": "510", + "missed": true + }, + { + "index": "511", + "missed": true + }, + { + "index": "512", + "missed": true + }, + { + "index": "513", + "missed": true + }, + { + "index": "514", + "missed": true + }, + { + "index": "515", + "missed": true + }, + { + "index": "516", + "missed": true + }, + { + "index": "517", + "missed": true + }, + { + "index": "518", + "missed": true + }, + { + "index": "519", + "missed": true + }, + { + "index": "520", + "missed": true + }, + { + "index": "521", + "missed": true + }, + { + "index": "522", + "missed": true + }, + { + "index": "523", + "missed": true + }, + { + "index": "524", + "missed": true + }, + { + "index": "525", + "missed": true + }, + { + "index": "526", + "missed": true + }, + { + "index": "527", + "missed": true + }, + { + "index": "528", + "missed": true + }, + { + "index": "529", + "missed": true + }, + { + "index": "530", + "missed": true + }, + { + "index": "531", + "missed": true + }, + { + "index": "532", + "missed": true + }, + { + "index": "533", + "missed": true + }, + { + "index": "534", + "missed": true + }, + { + "index": "535", + "missed": true + }, + { + "index": "536", + "missed": true + }, + { + "index": "537", + "missed": true + }, + { + "index": "538", + "missed": true + }, + { + "index": "539", + "missed": true + }, + { + "index": "540", + "missed": true + }, + { + "index": "541", + "missed": true + }, + { + "index": "542", + "missed": true + }, + { + "index": "543", + "missed": true + }, + { + "index": "544", + "missed": true + }, + { + "index": "545", + "missed": true + }, + { + "index": "546", + "missed": true + }, + { + "index": "547", + "missed": true + }, + { + "index": "548", + "missed": true + }, + { + "index": "549", + "missed": true + }, + { + "index": "550", + "missed": true + }, + { + "index": "551", + "missed": true + }, + { + "index": "552", + "missed": true + }, + { + "index": "553", + "missed": true + }, + { + "index": "554", + "missed": true + }, + { + "index": "555", + "missed": true + }, + { + "index": "556", + "missed": true + }, + { + "index": "557", + "missed": true + }, + { + "index": "558", + "missed": true + }, + { + "index": "559", + "missed": true + }, + { + "index": "560", + "missed": true + }, + { + "index": "561", + "missed": true + }, + { + "index": "562", + "missed": true + }, + { + "index": "563", + "missed": true + }, + { + "index": "564", + "missed": true + }, + { + "index": "565", + "missed": true + }, + { + "index": "566", + "missed": true + }, + { + "index": "567", + "missed": true + }, + { + "index": "568", + "missed": true + }, + { + "index": "569", + "missed": true + }, + { + "index": "570", + "missed": true + }, + { + "index": "571", + "missed": true + }, + { + "index": "572", + "missed": true + }, + { + "index": "573", + "missed": true + }, + { + "index": "574", + "missed": true + }, + { + "index": "575", + "missed": true + }, + { + "index": "576", + "missed": true + }, + { + "index": "577", + "missed": true + }, + { + "index": "578", + "missed": true + }, + { + "index": "579", + "missed": true + }, + { + "index": "580", + "missed": true + }, + { + "index": "581", + "missed": true + }, + { + "index": "582", + "missed": true + }, + { + "index": "583", + "missed": true + }, + { + "index": "584", + "missed": true + }, + { + "index": "585", + "missed": true + }, + { + "index": "586", + "missed": true + }, + { + "index": "587", + "missed": true + }, + { + "index": "588", + "missed": true + }, + { + "index": "589", + "missed": true + }, + { + "index": "590", + "missed": true + }, + { + "index": "591", + "missed": true + }, + { + "index": "592", + "missed": true + }, + { + "index": "593", + "missed": true + }, + { + "index": "594", + "missed": true + }, + { + "index": "595", + "missed": true + }, + { + "index": "596", + "missed": true + }, + { + "index": "597", + "missed": true + }, + { + "index": "598", + "missed": true + }, + { + "index": "599", + "missed": true + }, + { + "index": "600", + "missed": true + }, + { + "index": "601", + "missed": true + }, + { + "index": "602", + "missed": true + }, + { + "index": "603", + "missed": true + }, + { + "index": "604", + "missed": true + }, + { + "index": "605", + "missed": true + }, + { + "index": "606", + "missed": true + }, + { + "index": "607", + "missed": true + }, + { + "index": "608", + "missed": true + }, + { + "index": "609", + "missed": true + }, + { + "index": "610", + "missed": true + }, + { + "index": "611", + "missed": true + }, + { + "index": "612", + "missed": true + }, + { + "index": "613", + "missed": true + }, + { + "index": "614", + "missed": true + }, + { + "index": "615", + "missed": true + }, + { + "index": "616", + "missed": true + }, + { + "index": "617", + "missed": true + }, + { + "index": "618", + "missed": true + }, + { + "index": "619", + "missed": true + }, + { + "index": "620", + "missed": true + }, + { + "index": "621", + "missed": true + }, + { + "index": "622", + "missed": true + }, + { + "index": "623", + "missed": true + }, + { + "index": "624", + "missed": true + }, + { + "index": "625", + "missed": true + }, + { + "index": "626", + "missed": true + }, + { + "index": "627", + "missed": true + }, + { + "index": "628", + "missed": true + }, + { + "index": "629", + "missed": true + }, + { + "index": "630", + "missed": true + }, + { + "index": "631", + "missed": true + }, + { + "index": "632", + "missed": true + }, + { + "index": "633", + "missed": true + }, + { + "index": "634", + "missed": true + }, + { + "index": "635", + "missed": true + }, + { + "index": "636", + "missed": true + }, + { + "index": "637", + "missed": true + }, + { + "index": "638", + "missed": true + }, + { + "index": "639", + "missed": true + }, + { + "index": "640", + "missed": true + }, + { + "index": "641", + "missed": true + }, + { + "index": "642", + "missed": true + }, + { + "index": "643", + "missed": true + }, + { + "index": "644", + "missed": true + }, + { + "index": "645", + "missed": true + }, + { + "index": "646", + "missed": true + }, + { + "index": "647", + "missed": true + }, + { + "index": "648", + "missed": true + }, + { + "index": "649", + "missed": true + }, + { + "index": "650", + "missed": true + }, + { + "index": "651", + "missed": true + }, + { + "index": "652", + "missed": true + }, + { + "index": "653", + "missed": true + }, + { + "index": "654", + "missed": true + }, + { + "index": "655", + "missed": true + }, + { + "index": "656", + "missed": true + }, + { + "index": "657", + "missed": true + }, + { + "index": "658", + "missed": true + }, + { + "index": "659", + "missed": true + }, + { + "index": "660", + "missed": true + }, + { + "index": "661", + "missed": true + }, + { + "index": "662", + "missed": true + }, + { + "index": "663", + "missed": true + }, + { + "index": "664", + "missed": true + }, + { + "index": "665", + "missed": true + }, + { + "index": "666", + "missed": true + }, + { + "index": "667", + "missed": true + }, + { + "index": "668", + "missed": true + }, + { + "index": "669", + "missed": true + }, + { + "index": "670", + "missed": true + }, + { + "index": "671", + "missed": true + }, + { + "index": "672", + "missed": true + }, + { + "index": "673", + "missed": true + }, + { + "index": "674", + "missed": true + }, + { + "index": "675", + "missed": true + }, + { + "index": "676", + "missed": true + }, + { + "index": "677", + "missed": true + }, + { + "index": "678", + "missed": true + }, + { + "index": "679", + "missed": true + }, + { + "index": "680", + "missed": true + }, + { + "index": "681", + "missed": true + }, + { + "index": "682", + "missed": true + }, + { + "index": "683", + "missed": true + }, + { + "index": "684", + "missed": true + }, + { + "index": "685", + "missed": true + }, + { + "index": "686", + "missed": true + }, + { + "index": "687", + "missed": true + }, + { + "index": "688", + "missed": true + }, + { + "index": "689", + "missed": true + }, + { + "index": "690", + "missed": true + }, + { + "index": "691", + "missed": true + }, + { + "index": "692", + "missed": true + }, + { + "index": "693", + "missed": true + }, + { + "index": "694", + "missed": true + }, + { + "index": "695", + "missed": true + }, + { + "index": "696", + "missed": true + }, + { + "index": "697", + "missed": true + }, + { + "index": "698", + "missed": true + }, + { + "index": "699", + "missed": true + }, + { + "index": "700", + "missed": true + }, + { + "index": "701", + "missed": true + }, + { + "index": "702", + "missed": true + }, + { + "index": "703", + "missed": true + }, + { + "index": "704", + "missed": true + }, + { + "index": "705", + "missed": true + }, + { + "index": "706", + "missed": true + }, + { + "index": "707", + "missed": true + }, + { + "index": "708", + "missed": true + }, + { + "index": "709", + "missed": true + }, + { + "index": "710", + "missed": true + }, + { + "index": "711", + "missed": true + }, + { + "index": "712", + "missed": true + }, + { + "index": "713", + "missed": true + }, + { + "index": "714", + "missed": true + }, + { + "index": "715", + "missed": true + }, + { + "index": "716", + "missed": true + }, + { + "index": "717", + "missed": true + }, + { + "index": "718", + "missed": true + }, + { + "index": "719", + "missed": true + } + ], + "desmosvalcons1lkhc49g3zv40lcunmvtgwp3ph020rxlawpn78f": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + } + ], + "desmosvalcons1mxrd5cyjgpx5vfgltrdufq9wq4ynwc799ndrg8": [ + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + } + ], + "desmosvalcons1myshyf8wspceyfevtehjlrnwt56ke9hzhfrw94": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1n6x4y8srfml6f4xsynyn9y0dtjrfwfhyjpapkf": [ + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + } + ], + "desmosvalcons1njm7nf3604rl2n4tkdquz0yuryyfx8zgx2guar": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1pjxldh4ye8j2uyrxxe3yj3g47jy4d9zmak29ps": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1q43yf4u7xdyuezv63t32575p0pw3yyw2ge33zj": [ + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + } + ], + "desmosvalcons1q4y7zlwvu24yh2cxgrrs56fr38lqsy63ta2wrh": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1qxjse4ldv8es4ht75v67mvdmnp5hlp3nsc2msw": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1r42xg72zv6vtawmkw6xx0hquw3ttnf2pry4ege": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1s8h4nset89q7s7qjn59t4r4zlkh0a0efp4gjda": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1shagz97e6e48au7u58an6xf2h34qm2uvczndv9": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1sqfd9fxngk7frlg8jhxhv49jvacr8nlra3l7ha": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1t4e6htkm78cy0vlp97xqes97vfkzmc387vmle4": [ + { + "index": "391", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + } + ], + "desmosvalcons1t5vgxhmyg97lfhq4747k75kyvsk4n9p5pu4sd8": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1udw92ulxq2wq05swpuhnns4a6y42xlhwz6q97g": [], + "desmosvalcons1uga4khralc934va2e862wgvrzhswuzqsefw0s8": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "715", + "missed": false + } + ], + "desmosvalcons1v5ejtt5dff85c5zfy8gxea25d92yzrw0lewxyw": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + } + ], + "desmosvalcons1vs6mfhuvyrgjd9uwqv8fgcykqehdgczs0hngzc": [ + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + } + ], + "desmosvalcons1wdjkpvmkymxrq5ye9m7afecf3nzhyfccep8ajh": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1why72hjk945yhckcy5hzk2z2w9d5h65t9am0kd": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1wuf54kv2w6fa758t87gjlzkx97ek2dptjsc52w": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1x4dc8v28lnvwspa0hxr70za5ypp6jnqmdh8z6t": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1xd7zavv738jxf2th343ka7ytfvhea55908r9nl": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1xe4rdry0kunfvcn3a3wf3ay7zpv0rr3az4d8uf": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1xmjasmeljjp5xlzqqz6j8zr9czd3c78cduy4hr": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + } + ], + "desmosvalcons1xvasspfy8g95hv3ylr9esq7mrexzqsf5533wmk": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1y55lyzklnxn4s9qw5s9pzu8gj0uv8pp3n3xyhy": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": false + }, + { + "index": "400", + "missed": false + }, + { + "index": "401", + "missed": false + }, + { + "index": "402", + "missed": false + }, + { + "index": "403", + "missed": false + }, + { + "index": "404", + "missed": false + }, + { + "index": "405", + "missed": false + }, + { + "index": "406", + "missed": false + }, + { + "index": "407", + "missed": false + }, + { + "index": "408", + "missed": false + }, + { + "index": "409", + "missed": false + }, + { + "index": "410", + "missed": false + }, + { + "index": "411", + "missed": false + }, + { + "index": "412", + "missed": false + }, + { + "index": "413", + "missed": false + }, + { + "index": "414", + "missed": false + }, + { + "index": "415", + "missed": false + }, + { + "index": "416", + "missed": false + }, + { + "index": "417", + "missed": false + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ], + "desmosvalcons1zjkm5nkfjxnqmlp67drw93cqsmacecsuunclde": [ + { + "index": "0", + "missed": true + }, + { + "index": "1", + "missed": true + } + ], + "desmosvalcons1zsyjznzjjesafmjuccrwtrakp7ess7vfvytyxg": [ + { + "index": "0", + "missed": false + }, + { + "index": "1", + "missed": false + }, + { + "index": "2", + "missed": false + }, + { + "index": "3", + "missed": false + }, + { + "index": "4", + "missed": false + }, + { + "index": "5", + "missed": false + }, + { + "index": "6", + "missed": false + }, + { + "index": "7", + "missed": false + }, + { + "index": "8", + "missed": false + }, + { + "index": "9", + "missed": false + }, + { + "index": "10", + "missed": false + }, + { + "index": "11", + "missed": false + }, + { + "index": "12", + "missed": false + }, + { + "index": "13", + "missed": false + }, + { + "index": "14", + "missed": false + }, + { + "index": "15", + "missed": false + }, + { + "index": "16", + "missed": false + }, + { + "index": "17", + "missed": false + }, + { + "index": "18", + "missed": false + }, + { + "index": "19", + "missed": false + }, + { + "index": "20", + "missed": false + }, + { + "index": "21", + "missed": false + }, + { + "index": "22", + "missed": false + }, + { + "index": "23", + "missed": false + }, + { + "index": "24", + "missed": false + }, + { + "index": "25", + "missed": false + }, + { + "index": "26", + "missed": false + }, + { + "index": "27", + "missed": false + }, + { + "index": "28", + "missed": false + }, + { + "index": "29", + "missed": false + }, + { + "index": "30", + "missed": false + }, + { + "index": "31", + "missed": false + }, + { + "index": "32", + "missed": false + }, + { + "index": "33", + "missed": false + }, + { + "index": "34", + "missed": false + }, + { + "index": "35", + "missed": false + }, + { + "index": "36", + "missed": false + }, + { + "index": "37", + "missed": false + }, + { + "index": "38", + "missed": false + }, + { + "index": "39", + "missed": false + }, + { + "index": "40", + "missed": false + }, + { + "index": "41", + "missed": false + }, + { + "index": "42", + "missed": false + }, + { + "index": "43", + "missed": false + }, + { + "index": "44", + "missed": false + }, + { + "index": "45", + "missed": false + }, + { + "index": "46", + "missed": false + }, + { + "index": "47", + "missed": false + }, + { + "index": "48", + "missed": false + }, + { + "index": "49", + "missed": false + }, + { + "index": "50", + "missed": false + }, + { + "index": "51", + "missed": false + }, + { + "index": "52", + "missed": false + }, + { + "index": "53", + "missed": false + }, + { + "index": "54", + "missed": false + }, + { + "index": "55", + "missed": false + }, + { + "index": "56", + "missed": false + }, + { + "index": "57", + "missed": false + }, + { + "index": "58", + "missed": false + }, + { + "index": "59", + "missed": false + }, + { + "index": "60", + "missed": false + }, + { + "index": "61", + "missed": false + }, + { + "index": "62", + "missed": false + }, + { + "index": "63", + "missed": false + }, + { + "index": "64", + "missed": false + }, + { + "index": "65", + "missed": false + }, + { + "index": "66", + "missed": false + }, + { + "index": "67", + "missed": false + }, + { + "index": "68", + "missed": false + }, + { + "index": "69", + "missed": false + }, + { + "index": "70", + "missed": false + }, + { + "index": "71", + "missed": false + }, + { + "index": "72", + "missed": false + }, + { + "index": "73", + "missed": false + }, + { + "index": "74", + "missed": false + }, + { + "index": "75", + "missed": false + }, + { + "index": "76", + "missed": false + }, + { + "index": "77", + "missed": false + }, + { + "index": "78", + "missed": false + }, + { + "index": "79", + "missed": false + }, + { + "index": "80", + "missed": false + }, + { + "index": "81", + "missed": false + }, + { + "index": "82", + "missed": false + }, + { + "index": "83", + "missed": false + }, + { + "index": "84", + "missed": false + }, + { + "index": "85", + "missed": false + }, + { + "index": "86", + "missed": false + }, + { + "index": "87", + "missed": false + }, + { + "index": "88", + "missed": false + }, + { + "index": "89", + "missed": false + }, + { + "index": "90", + "missed": false + }, + { + "index": "91", + "missed": false + }, + { + "index": "92", + "missed": false + }, + { + "index": "93", + "missed": false + }, + { + "index": "94", + "missed": false + }, + { + "index": "95", + "missed": false + }, + { + "index": "96", + "missed": false + }, + { + "index": "97", + "missed": false + }, + { + "index": "98", + "missed": false + }, + { + "index": "99", + "missed": false + }, + { + "index": "100", + "missed": false + }, + { + "index": "101", + "missed": false + }, + { + "index": "102", + "missed": false + }, + { + "index": "103", + "missed": false + }, + { + "index": "104", + "missed": false + }, + { + "index": "105", + "missed": false + }, + { + "index": "106", + "missed": false + }, + { + "index": "107", + "missed": false + }, + { + "index": "108", + "missed": false + }, + { + "index": "109", + "missed": false + }, + { + "index": "110", + "missed": false + }, + { + "index": "111", + "missed": false + }, + { + "index": "112", + "missed": false + }, + { + "index": "113", + "missed": false + }, + { + "index": "114", + "missed": false + }, + { + "index": "115", + "missed": false + }, + { + "index": "116", + "missed": false + }, + { + "index": "117", + "missed": false + }, + { + "index": "118", + "missed": false + }, + { + "index": "119", + "missed": false + }, + { + "index": "120", + "missed": false + }, + { + "index": "121", + "missed": false + }, + { + "index": "122", + "missed": false + }, + { + "index": "123", + "missed": false + }, + { + "index": "124", + "missed": false + }, + { + "index": "125", + "missed": false + }, + { + "index": "126", + "missed": false + }, + { + "index": "127", + "missed": false + }, + { + "index": "128", + "missed": false + }, + { + "index": "129", + "missed": false + }, + { + "index": "130", + "missed": false + }, + { + "index": "131", + "missed": false + }, + { + "index": "132", + "missed": false + }, + { + "index": "133", + "missed": false + }, + { + "index": "134", + "missed": false + }, + { + "index": "135", + "missed": false + }, + { + "index": "136", + "missed": false + }, + { + "index": "137", + "missed": false + }, + { + "index": "138", + "missed": false + }, + { + "index": "139", + "missed": false + }, + { + "index": "140", + "missed": false + }, + { + "index": "141", + "missed": false + }, + { + "index": "142", + "missed": false + }, + { + "index": "143", + "missed": false + }, + { + "index": "144", + "missed": false + }, + { + "index": "145", + "missed": false + }, + { + "index": "146", + "missed": false + }, + { + "index": "147", + "missed": false + }, + { + "index": "148", + "missed": false + }, + { + "index": "149", + "missed": false + }, + { + "index": "150", + "missed": false + }, + { + "index": "151", + "missed": false + }, + { + "index": "152", + "missed": false + }, + { + "index": "153", + "missed": false + }, + { + "index": "154", + "missed": false + }, + { + "index": "155", + "missed": false + }, + { + "index": "156", + "missed": false + }, + { + "index": "157", + "missed": false + }, + { + "index": "158", + "missed": false + }, + { + "index": "159", + "missed": false + }, + { + "index": "160", + "missed": false + }, + { + "index": "161", + "missed": false + }, + { + "index": "162", + "missed": false + }, + { + "index": "163", + "missed": false + }, + { + "index": "164", + "missed": false + }, + { + "index": "165", + "missed": false + }, + { + "index": "166", + "missed": false + }, + { + "index": "167", + "missed": false + }, + { + "index": "168", + "missed": false + }, + { + "index": "169", + "missed": false + }, + { + "index": "170", + "missed": false + }, + { + "index": "171", + "missed": false + }, + { + "index": "172", + "missed": false + }, + { + "index": "173", + "missed": false + }, + { + "index": "174", + "missed": false + }, + { + "index": "175", + "missed": false + }, + { + "index": "176", + "missed": false + }, + { + "index": "177", + "missed": false + }, + { + "index": "178", + "missed": false + }, + { + "index": "179", + "missed": false + }, + { + "index": "180", + "missed": false + }, + { + "index": "181", + "missed": false + }, + { + "index": "182", + "missed": false + }, + { + "index": "183", + "missed": false + }, + { + "index": "184", + "missed": false + }, + { + "index": "185", + "missed": false + }, + { + "index": "186", + "missed": false + }, + { + "index": "187", + "missed": false + }, + { + "index": "188", + "missed": false + }, + { + "index": "189", + "missed": false + }, + { + "index": "190", + "missed": false + }, + { + "index": "191", + "missed": false + }, + { + "index": "192", + "missed": false + }, + { + "index": "193", + "missed": false + }, + { + "index": "194", + "missed": false + }, + { + "index": "195", + "missed": false + }, + { + "index": "196", + "missed": false + }, + { + "index": "197", + "missed": false + }, + { + "index": "198", + "missed": false + }, + { + "index": "199", + "missed": false + }, + { + "index": "200", + "missed": false + }, + { + "index": "201", + "missed": false + }, + { + "index": "202", + "missed": false + }, + { + "index": "203", + "missed": false + }, + { + "index": "204", + "missed": false + }, + { + "index": "205", + "missed": false + }, + { + "index": "206", + "missed": false + }, + { + "index": "207", + "missed": false + }, + { + "index": "208", + "missed": false + }, + { + "index": "209", + "missed": false + }, + { + "index": "210", + "missed": false + }, + { + "index": "211", + "missed": false + }, + { + "index": "212", + "missed": false + }, + { + "index": "213", + "missed": false + }, + { + "index": "214", + "missed": false + }, + { + "index": "215", + "missed": false + }, + { + "index": "216", + "missed": false + }, + { + "index": "217", + "missed": false + }, + { + "index": "218", + "missed": false + }, + { + "index": "219", + "missed": false + }, + { + "index": "220", + "missed": false + }, + { + "index": "221", + "missed": false + }, + { + "index": "222", + "missed": false + }, + { + "index": "223", + "missed": false + }, + { + "index": "224", + "missed": false + }, + { + "index": "225", + "missed": false + }, + { + "index": "226", + "missed": false + }, + { + "index": "227", + "missed": false + }, + { + "index": "228", + "missed": false + }, + { + "index": "229", + "missed": false + }, + { + "index": "230", + "missed": false + }, + { + "index": "231", + "missed": false + }, + { + "index": "232", + "missed": false + }, + { + "index": "233", + "missed": false + }, + { + "index": "234", + "missed": false + }, + { + "index": "235", + "missed": false + }, + { + "index": "236", + "missed": false + }, + { + "index": "237", + "missed": false + }, + { + "index": "238", + "missed": false + }, + { + "index": "239", + "missed": false + }, + { + "index": "240", + "missed": false + }, + { + "index": "241", + "missed": false + }, + { + "index": "242", + "missed": false + }, + { + "index": "243", + "missed": false + }, + { + "index": "244", + "missed": false + }, + { + "index": "245", + "missed": false + }, + { + "index": "246", + "missed": false + }, + { + "index": "247", + "missed": false + }, + { + "index": "248", + "missed": false + }, + { + "index": "249", + "missed": false + }, + { + "index": "250", + "missed": false + }, + { + "index": "251", + "missed": false + }, + { + "index": "252", + "missed": false + }, + { + "index": "253", + "missed": false + }, + { + "index": "254", + "missed": false + }, + { + "index": "255", + "missed": false + }, + { + "index": "256", + "missed": false + }, + { + "index": "257", + "missed": false + }, + { + "index": "258", + "missed": false + }, + { + "index": "259", + "missed": false + }, + { + "index": "260", + "missed": false + }, + { + "index": "261", + "missed": false + }, + { + "index": "262", + "missed": false + }, + { + "index": "263", + "missed": false + }, + { + "index": "264", + "missed": false + }, + { + "index": "265", + "missed": false + }, + { + "index": "266", + "missed": false + }, + { + "index": "267", + "missed": false + }, + { + "index": "268", + "missed": false + }, + { + "index": "269", + "missed": false + }, + { + "index": "270", + "missed": false + }, + { + "index": "271", + "missed": false + }, + { + "index": "272", + "missed": false + }, + { + "index": "273", + "missed": false + }, + { + "index": "274", + "missed": false + }, + { + "index": "275", + "missed": false + }, + { + "index": "276", + "missed": false + }, + { + "index": "277", + "missed": false + }, + { + "index": "278", + "missed": false + }, + { + "index": "279", + "missed": false + }, + { + "index": "280", + "missed": false + }, + { + "index": "281", + "missed": false + }, + { + "index": "282", + "missed": false + }, + { + "index": "283", + "missed": false + }, + { + "index": "284", + "missed": false + }, + { + "index": "285", + "missed": false + }, + { + "index": "286", + "missed": false + }, + { + "index": "287", + "missed": false + }, + { + "index": "288", + "missed": false + }, + { + "index": "289", + "missed": false + }, + { + "index": "290", + "missed": false + }, + { + "index": "291", + "missed": false + }, + { + "index": "292", + "missed": false + }, + { + "index": "293", + "missed": false + }, + { + "index": "294", + "missed": false + }, + { + "index": "295", + "missed": false + }, + { + "index": "296", + "missed": false + }, + { + "index": "297", + "missed": false + }, + { + "index": "298", + "missed": false + }, + { + "index": "299", + "missed": false + }, + { + "index": "300", + "missed": false + }, + { + "index": "301", + "missed": false + }, + { + "index": "302", + "missed": false + }, + { + "index": "303", + "missed": false + }, + { + "index": "304", + "missed": false + }, + { + "index": "305", + "missed": false + }, + { + "index": "306", + "missed": false + }, + { + "index": "307", + "missed": false + }, + { + "index": "308", + "missed": false + }, + { + "index": "309", + "missed": false + }, + { + "index": "310", + "missed": false + }, + { + "index": "311", + "missed": false + }, + { + "index": "312", + "missed": false + }, + { + "index": "313", + "missed": false + }, + { + "index": "314", + "missed": false + }, + { + "index": "315", + "missed": false + }, + { + "index": "316", + "missed": false + }, + { + "index": "317", + "missed": false + }, + { + "index": "318", + "missed": false + }, + { + "index": "319", + "missed": false + }, + { + "index": "320", + "missed": false + }, + { + "index": "321", + "missed": false + }, + { + "index": "322", + "missed": false + }, + { + "index": "323", + "missed": false + }, + { + "index": "324", + "missed": false + }, + { + "index": "325", + "missed": false + }, + { + "index": "326", + "missed": false + }, + { + "index": "327", + "missed": false + }, + { + "index": "328", + "missed": false + }, + { + "index": "329", + "missed": false + }, + { + "index": "330", + "missed": false + }, + { + "index": "331", + "missed": false + }, + { + "index": "332", + "missed": false + }, + { + "index": "333", + "missed": false + }, + { + "index": "334", + "missed": false + }, + { + "index": "335", + "missed": false + }, + { + "index": "336", + "missed": false + }, + { + "index": "337", + "missed": false + }, + { + "index": "338", + "missed": false + }, + { + "index": "339", + "missed": false + }, + { + "index": "340", + "missed": false + }, + { + "index": "341", + "missed": false + }, + { + "index": "342", + "missed": false + }, + { + "index": "343", + "missed": false + }, + { + "index": "344", + "missed": false + }, + { + "index": "345", + "missed": false + }, + { + "index": "346", + "missed": false + }, + { + "index": "347", + "missed": false + }, + { + "index": "348", + "missed": false + }, + { + "index": "349", + "missed": false + }, + { + "index": "350", + "missed": false + }, + { + "index": "351", + "missed": false + }, + { + "index": "352", + "missed": false + }, + { + "index": "353", + "missed": false + }, + { + "index": "354", + "missed": false + }, + { + "index": "355", + "missed": false + }, + { + "index": "356", + "missed": false + }, + { + "index": "357", + "missed": false + }, + { + "index": "358", + "missed": false + }, + { + "index": "359", + "missed": false + }, + { + "index": "360", + "missed": false + }, + { + "index": "361", + "missed": false + }, + { + "index": "362", + "missed": false + }, + { + "index": "363", + "missed": false + }, + { + "index": "364", + "missed": false + }, + { + "index": "365", + "missed": false + }, + { + "index": "366", + "missed": false + }, + { + "index": "367", + "missed": false + }, + { + "index": "368", + "missed": false + }, + { + "index": "369", + "missed": false + }, + { + "index": "370", + "missed": false + }, + { + "index": "371", + "missed": false + }, + { + "index": "372", + "missed": false + }, + { + "index": "373", + "missed": false + }, + { + "index": "374", + "missed": false + }, + { + "index": "375", + "missed": false + }, + { + "index": "376", + "missed": false + }, + { + "index": "377", + "missed": false + }, + { + "index": "378", + "missed": false + }, + { + "index": "379", + "missed": false + }, + { + "index": "380", + "missed": false + }, + { + "index": "381", + "missed": false + }, + { + "index": "382", + "missed": false + }, + { + "index": "383", + "missed": false + }, + { + "index": "384", + "missed": false + }, + { + "index": "385", + "missed": false + }, + { + "index": "386", + "missed": false + }, + { + "index": "387", + "missed": false + }, + { + "index": "388", + "missed": false + }, + { + "index": "389", + "missed": false + }, + { + "index": "390", + "missed": false + }, + { + "index": "391", + "missed": false + }, + { + "index": "392", + "missed": false + }, + { + "index": "393", + "missed": false + }, + { + "index": "394", + "missed": false + }, + { + "index": "395", + "missed": false + }, + { + "index": "396", + "missed": false + }, + { + "index": "397", + "missed": false + }, + { + "index": "398", + "missed": false + }, + { + "index": "399", + "missed": true + }, + { + "index": "400", + "missed": true + }, + { + "index": "401", + "missed": true + }, + { + "index": "402", + "missed": true + }, + { + "index": "403", + "missed": true + }, + { + "index": "404", + "missed": true + }, + { + "index": "405", + "missed": true + }, + { + "index": "406", + "missed": true + }, + { + "index": "407", + "missed": true + }, + { + "index": "408", + "missed": true + }, + { + "index": "409", + "missed": true + }, + { + "index": "410", + "missed": true + }, + { + "index": "411", + "missed": true + }, + { + "index": "412", + "missed": true + }, + { + "index": "413", + "missed": true + }, + { + "index": "414", + "missed": true + }, + { + "index": "415", + "missed": true + }, + { + "index": "416", + "missed": true + }, + { + "index": "417", + "missed": true + }, + { + "index": "418", + "missed": false + }, + { + "index": "419", + "missed": false + }, + { + "index": "420", + "missed": false + }, + { + "index": "421", + "missed": false + }, + { + "index": "422", + "missed": false + }, + { + "index": "423", + "missed": false + }, + { + "index": "424", + "missed": false + }, + { + "index": "425", + "missed": false + }, + { + "index": "426", + "missed": false + }, + { + "index": "427", + "missed": false + }, + { + "index": "428", + "missed": false + }, + { + "index": "429", + "missed": false + }, + { + "index": "430", + "missed": false + }, + { + "index": "431", + "missed": false + }, + { + "index": "432", + "missed": false + }, + { + "index": "433", + "missed": false + }, + { + "index": "434", + "missed": false + }, + { + "index": "435", + "missed": false + }, + { + "index": "436", + "missed": false + }, + { + "index": "437", + "missed": false + }, + { + "index": "438", + "missed": false + }, + { + "index": "439", + "missed": false + }, + { + "index": "440", + "missed": false + }, + { + "index": "441", + "missed": false + }, + { + "index": "442", + "missed": false + }, + { + "index": "443", + "missed": false + }, + { + "index": "444", + "missed": false + }, + { + "index": "445", + "missed": false + }, + { + "index": "446", + "missed": false + }, + { + "index": "447", + "missed": false + }, + { + "index": "448", + "missed": false + }, + { + "index": "449", + "missed": false + }, + { + "index": "450", + "missed": false + }, + { + "index": "451", + "missed": false + }, + { + "index": "452", + "missed": false + }, + { + "index": "453", + "missed": false + }, + { + "index": "454", + "missed": false + }, + { + "index": "455", + "missed": false + }, + { + "index": "456", + "missed": false + }, + { + "index": "457", + "missed": false + }, + { + "index": "458", + "missed": false + }, + { + "index": "459", + "missed": false + }, + { + "index": "460", + "missed": false + }, + { + "index": "461", + "missed": false + }, + { + "index": "462", + "missed": false + }, + { + "index": "463", + "missed": false + }, + { + "index": "464", + "missed": false + }, + { + "index": "465", + "missed": false + }, + { + "index": "466", + "missed": false + }, + { + "index": "467", + "missed": false + }, + { + "index": "468", + "missed": false + }, + { + "index": "469", + "missed": false + }, + { + "index": "470", + "missed": false + }, + { + "index": "471", + "missed": false + }, + { + "index": "472", + "missed": false + }, + { + "index": "473", + "missed": false + }, + { + "index": "474", + "missed": false + }, + { + "index": "475", + "missed": false + }, + { + "index": "476", + "missed": false + }, + { + "index": "477", + "missed": false + }, + { + "index": "478", + "missed": false + }, + { + "index": "479", + "missed": false + }, + { + "index": "480", + "missed": false + }, + { + "index": "481", + "missed": false + }, + { + "index": "482", + "missed": false + }, + { + "index": "483", + "missed": false + }, + { + "index": "484", + "missed": false + }, + { + "index": "485", + "missed": false + }, + { + "index": "486", + "missed": false + }, + { + "index": "487", + "missed": false + }, + { + "index": "488", + "missed": false + }, + { + "index": "489", + "missed": false + }, + { + "index": "490", + "missed": false + }, + { + "index": "491", + "missed": false + }, + { + "index": "492", + "missed": false + }, + { + "index": "493", + "missed": false + }, + { + "index": "494", + "missed": false + }, + { + "index": "495", + "missed": false + }, + { + "index": "496", + "missed": false + }, + { + "index": "497", + "missed": false + }, + { + "index": "498", + "missed": false + }, + { + "index": "499", + "missed": false + }, + { + "index": "500", + "missed": false + }, + { + "index": "501", + "missed": false + }, + { + "index": "502", + "missed": false + }, + { + "index": "503", + "missed": false + }, + { + "index": "504", + "missed": false + }, + { + "index": "505", + "missed": false + }, + { + "index": "506", + "missed": false + }, + { + "index": "507", + "missed": false + }, + { + "index": "508", + "missed": false + }, + { + "index": "509", + "missed": false + }, + { + "index": "510", + "missed": false + }, + { + "index": "511", + "missed": false + }, + { + "index": "512", + "missed": false + }, + { + "index": "513", + "missed": false + }, + { + "index": "514", + "missed": false + }, + { + "index": "515", + "missed": false + }, + { + "index": "516", + "missed": false + }, + { + "index": "517", + "missed": false + }, + { + "index": "518", + "missed": false + }, + { + "index": "519", + "missed": false + }, + { + "index": "520", + "missed": false + }, + { + "index": "521", + "missed": false + }, + { + "index": "522", + "missed": false + }, + { + "index": "523", + "missed": false + }, + { + "index": "524", + "missed": false + }, + { + "index": "525", + "missed": false + }, + { + "index": "526", + "missed": false + }, + { + "index": "527", + "missed": false + }, + { + "index": "528", + "missed": false + }, + { + "index": "529", + "missed": false + }, + { + "index": "530", + "missed": false + }, + { + "index": "531", + "missed": false + }, + { + "index": "532", + "missed": false + }, + { + "index": "533", + "missed": false + }, + { + "index": "534", + "missed": false + }, + { + "index": "535", + "missed": false + }, + { + "index": "536", + "missed": false + }, + { + "index": "537", + "missed": false + }, + { + "index": "538", + "missed": false + }, + { + "index": "539", + "missed": false + }, + { + "index": "540", + "missed": false + }, + { + "index": "541", + "missed": false + }, + { + "index": "542", + "missed": false + }, + { + "index": "543", + "missed": false + }, + { + "index": "544", + "missed": false + }, + { + "index": "545", + "missed": false + }, + { + "index": "546", + "missed": false + }, + { + "index": "547", + "missed": false + }, + { + "index": "548", + "missed": false + }, + { + "index": "549", + "missed": false + }, + { + "index": "550", + "missed": false + }, + { + "index": "551", + "missed": false + }, + { + "index": "552", + "missed": false + }, + { + "index": "553", + "missed": false + }, + { + "index": "554", + "missed": false + }, + { + "index": "555", + "missed": false + }, + { + "index": "556", + "missed": false + }, + { + "index": "557", + "missed": false + }, + { + "index": "558", + "missed": false + }, + { + "index": "559", + "missed": false + }, + { + "index": "560", + "missed": false + }, + { + "index": "561", + "missed": false + }, + { + "index": "562", + "missed": false + }, + { + "index": "563", + "missed": false + }, + { + "index": "564", + "missed": false + }, + { + "index": "565", + "missed": false + }, + { + "index": "566", + "missed": false + }, + { + "index": "567", + "missed": false + }, + { + "index": "568", + "missed": false + }, + { + "index": "569", + "missed": false + }, + { + "index": "570", + "missed": false + }, + { + "index": "571", + "missed": false + }, + { + "index": "572", + "missed": false + }, + { + "index": "573", + "missed": false + }, + { + "index": "574", + "missed": false + }, + { + "index": "575", + "missed": false + }, + { + "index": "576", + "missed": false + }, + { + "index": "577", + "missed": false + }, + { + "index": "578", + "missed": false + }, + { + "index": "579", + "missed": false + }, + { + "index": "580", + "missed": false + }, + { + "index": "581", + "missed": false + }, + { + "index": "582", + "missed": false + }, + { + "index": "583", + "missed": false + }, + { + "index": "584", + "missed": false + }, + { + "index": "585", + "missed": false + }, + { + "index": "586", + "missed": false + }, + { + "index": "587", + "missed": false + }, + { + "index": "588", + "missed": false + }, + { + "index": "589", + "missed": false + }, + { + "index": "590", + "missed": false + }, + { + "index": "591", + "missed": false + }, + { + "index": "592", + "missed": false + }, + { + "index": "593", + "missed": false + }, + { + "index": "594", + "missed": false + }, + { + "index": "595", + "missed": false + }, + { + "index": "596", + "missed": false + }, + { + "index": "597", + "missed": false + }, + { + "index": "598", + "missed": false + }, + { + "index": "599", + "missed": false + }, + { + "index": "600", + "missed": false + }, + { + "index": "601", + "missed": false + }, + { + "index": "602", + "missed": false + }, + { + "index": "603", + "missed": false + }, + { + "index": "604", + "missed": false + }, + { + "index": "605", + "missed": false + }, + { + "index": "606", + "missed": false + }, + { + "index": "607", + "missed": false + }, + { + "index": "608", + "missed": false + }, + { + "index": "609", + "missed": false + }, + { + "index": "610", + "missed": false + }, + { + "index": "611", + "missed": false + }, + { + "index": "612", + "missed": false + }, + { + "index": "613", + "missed": false + }, + { + "index": "614", + "missed": false + }, + { + "index": "615", + "missed": false + }, + { + "index": "616", + "missed": false + }, + { + "index": "617", + "missed": false + }, + { + "index": "618", + "missed": false + }, + { + "index": "619", + "missed": false + }, + { + "index": "620", + "missed": false + }, + { + "index": "621", + "missed": false + }, + { + "index": "622", + "missed": false + }, + { + "index": "623", + "missed": false + }, + { + "index": "624", + "missed": false + }, + { + "index": "625", + "missed": false + }, + { + "index": "626", + "missed": false + }, + { + "index": "627", + "missed": false + }, + { + "index": "628", + "missed": false + }, + { + "index": "629", + "missed": false + }, + { + "index": "630", + "missed": false + }, + { + "index": "631", + "missed": false + }, + { + "index": "632", + "missed": false + }, + { + "index": "633", + "missed": false + }, + { + "index": "634", + "missed": false + }, + { + "index": "635", + "missed": false + }, + { + "index": "636", + "missed": false + }, + { + "index": "637", + "missed": false + }, + { + "index": "638", + "missed": false + }, + { + "index": "639", + "missed": false + }, + { + "index": "640", + "missed": false + }, + { + "index": "641", + "missed": false + }, + { + "index": "642", + "missed": false + }, + { + "index": "643", + "missed": false + }, + { + "index": "644", + "missed": false + }, + { + "index": "645", + "missed": false + }, + { + "index": "646", + "missed": false + }, + { + "index": "647", + "missed": false + }, + { + "index": "648", + "missed": false + }, + { + "index": "649", + "missed": false + }, + { + "index": "650", + "missed": false + }, + { + "index": "651", + "missed": false + }, + { + "index": "652", + "missed": false + }, + { + "index": "653", + "missed": false + }, + { + "index": "654", + "missed": false + }, + { + "index": "655", + "missed": false + }, + { + "index": "656", + "missed": false + }, + { + "index": "657", + "missed": false + }, + { + "index": "658", + "missed": false + }, + { + "index": "659", + "missed": false + }, + { + "index": "660", + "missed": false + }, + { + "index": "661", + "missed": false + }, + { + "index": "662", + "missed": false + }, + { + "index": "663", + "missed": false + }, + { + "index": "664", + "missed": false + }, + { + "index": "665", + "missed": false + }, + { + "index": "666", + "missed": false + }, + { + "index": "667", + "missed": false + }, + { + "index": "668", + "missed": false + }, + { + "index": "669", + "missed": false + }, + { + "index": "670", + "missed": false + }, + { + "index": "671", + "missed": false + }, + { + "index": "672", + "missed": false + }, + { + "index": "673", + "missed": false + }, + { + "index": "674", + "missed": false + }, + { + "index": "675", + "missed": false + }, + { + "index": "676", + "missed": false + }, + { + "index": "677", + "missed": false + }, + { + "index": "678", + "missed": false + }, + { + "index": "679", + "missed": false + }, + { + "index": "680", + "missed": false + }, + { + "index": "681", + "missed": false + }, + { + "index": "682", + "missed": false + }, + { + "index": "683", + "missed": false + }, + { + "index": "684", + "missed": false + }, + { + "index": "685", + "missed": false + }, + { + "index": "686", + "missed": false + }, + { + "index": "687", + "missed": false + }, + { + "index": "688", + "missed": false + }, + { + "index": "689", + "missed": false + }, + { + "index": "690", + "missed": false + }, + { + "index": "691", + "missed": false + }, + { + "index": "692", + "missed": false + }, + { + "index": "693", + "missed": false + }, + { + "index": "694", + "missed": false + }, + { + "index": "695", + "missed": false + }, + { + "index": "696", + "missed": false + }, + { + "index": "697", + "missed": false + }, + { + "index": "698", + "missed": false + }, + { + "index": "699", + "missed": false + }, + { + "index": "700", + "missed": false + }, + { + "index": "701", + "missed": false + }, + { + "index": "702", + "missed": false + }, + { + "index": "703", + "missed": false + }, + { + "index": "704", + "missed": false + }, + { + "index": "705", + "missed": false + }, + { + "index": "706", + "missed": false + }, + { + "index": "707", + "missed": false + }, + { + "index": "708", + "missed": false + }, + { + "index": "709", + "missed": false + }, + { + "index": "710", + "missed": false + }, + { + "index": "711", + "missed": false + }, + { + "index": "712", + "missed": false + }, + { + "index": "713", + "missed": false + }, + { + "index": "714", + "missed": false + }, + { + "index": "715", + "missed": false + }, + { + "index": "716", + "missed": false + }, + { + "index": "717", + "missed": false + }, + { + "index": "718", + "missed": false + }, + { + "index": "719", + "missed": false + } + ] + }, + "params": { + "downtime_jail_duration": "600000000000", + "min_signed_per_window": "0.050000000000000000", + "signed_blocks_window": "720", + "slash_fraction_double_sign": "0.050000000000000000", + "slash_fraction_downtime": "0.010000000000000000" + }, + "signing_infos": { + "desmosvalcons13tssslsz0wn0jw2whypvyy57pyxt7aksul4edu": { + "address": "desmosvalcons13tssslsz0wn0jw2whypvyy57pyxt7aksul4edu", + "index_offset": "2", + "jailed_until": "2020-01-25T06:20:17.131718997Z", + "missed_blocks_counter": "2", + "start_height": "123024", + "tombstoned": false + }, + "desmosvalcons15kc3sr8re2xl5mj5df5dq543hz28mjkg8h5qgj": { + "address": "desmosvalcons15kc3sr8re2xl5mj5df5dq543hz28mjkg8h5qgj", + "index_offset": "1358863", + "jailed_until": "2020-02-08T22:31:13.584250919Z", + "missed_blocks_counter": "0", + "start_height": "390687", + "tombstoned": false + }, + "desmosvalcons16e82c0qtlg8fsazgrmkncvfphmglpejg6gatz5": { + "address": "desmosvalcons16e82c0qtlg8fsazgrmkncvfphmglpejg6gatz5", + "index_offset": "589394", + "jailed_until": "2020-03-24T18:21:42.594117002Z", + "missed_blocks_counter": "0", + "start_height": "233618", + "tombstoned": false + }, + "desmosvalcons16fww3gd0p2sgunwexympn5x8cxjartt456a4mx": { + "address": "desmosvalcons16fww3gd0p2sgunwexympn5x8cxjartt456a4mx", + "index_offset": "2", + "jailed_until": "2020-05-02T14:40:13.52432244Z", + "missed_blocks_counter": "2", + "start_height": "107642", + "tombstoned": false + }, + "desmosvalcons1785njjxnay4pwd8w592xdx4rqptdy5h3cvr0a2": { + "address": "desmosvalcons1785njjxnay4pwd8w592xdx4rqptdy5h3cvr0a2", + "index_offset": "2242766", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "0", + "tombstoned": false + }, + "desmosvalcons17txgcuy9g4jy59en599anqy086h3h22l2gmt27": { + "address": "desmosvalcons17txgcuy9g4jy59en599anqy086h3h22l2gmt27", + "index_offset": "2", + "jailed_until": "2020-03-17T02:13:07.858492071Z", + "missed_blocks_counter": "2", + "start_height": "243925", + "tombstoned": false + }, + "desmosvalcons17uwyf238ykjg2at63uc5nm2k7xqxyxk37f8zkd": { + "address": "desmosvalcons17uwyf238ykjg2at63uc5nm2k7xqxyxk37f8zkd", + "index_offset": "2", + "jailed_until": "2020-02-17T07:07:24.021167357Z", + "missed_blocks_counter": "2", + "start_height": "258953", + "tombstoned": false + }, + "desmosvalcons19pc8sk3kqsqc83f57m65xwjvraq8l26ftfe0xr": { + "address": "desmosvalcons19pc8sk3kqsqc83f57m65xwjvraq8l26ftfe0xr", + "index_offset": "2", + "jailed_until": "2020-01-20T21:58:26.16886711Z", + "missed_blocks_counter": "2", + "start_height": "99765", + "tombstoned": false + }, + "desmosvalcons1a48zyjsq5n07e0jqvxjup4vge4pvxdt9unkce0": { + "address": "desmosvalcons1a48zyjsq5n07e0jqvxjup4vge4pvxdt9unkce0", + "index_offset": "2", + "jailed_until": "2020-04-30T10:11:13.745587335Z", + "missed_blocks_counter": "2", + "start_height": "73888", + "tombstoned": false + }, + "desmosvalcons1aak9vdqqn35wc655zwl29wtfnsp8cw9gu2awvt": { + "address": "desmosvalcons1aak9vdqqn35wc655zwl29wtfnsp8cw9gu2awvt", + "index_offset": "7462", + "jailed_until": "2020-05-06T04:13:56.258314599Z", + "missed_blocks_counter": "0", + "start_height": "79411", + "tombstoned": false + }, + "desmosvalcons1adduk8rnjd642axkhavlnan2huxfhlmdyar0ly": { + "address": "desmosvalcons1adduk8rnjd642axkhavlnan2huxfhlmdyar0ly", + "index_offset": "822325", + "jailed_until": "2020-03-15T08:38:02.152450862Z", + "missed_blocks_counter": "0", + "start_height": "85420", + "tombstoned": false + }, + "desmosvalcons1arakyvwlhac9flyves3c07634cxsulrdjzcwne": { + "address": "desmosvalcons1arakyvwlhac9flyves3c07634cxsulrdjzcwne", + "index_offset": "2", + "jailed_until": "2020-04-30T10:08:20.662124989Z", + "missed_blocks_counter": "2", + "start_height": "73857", + "tombstoned": false + }, + "desmosvalcons1c29eyczh5lw4npe0a9n40nm5g299fq8nt5lerw": { + "address": "desmosvalcons1c29eyczh5lw4npe0a9n40nm5g299fq8nt5lerw", + "index_offset": "1495886", + "jailed_until": "2020-01-30T22:38:17.754789733Z", + "missed_blocks_counter": "0", + "start_height": "253433", + "tombstoned": false + }, + "desmosvalcons1crr2fr40gj3hqqq7kcn84ec84r7ykwm7mc7d7x": { + "address": "desmosvalcons1crr2fr40gj3hqqq7kcn84ec84r7ykwm7mc7d7x", + "index_offset": "2", + "jailed_until": "2020-02-17T07:07:58.089117455Z", + "missed_blocks_counter": "2", + "start_height": "251254", + "tombstoned": false + }, + "desmosvalcons1d8pcgv38fkczqk8ka543eyc5tx6emwsjslmde0": { + "address": "desmosvalcons1d8pcgv38fkczqk8ka543eyc5tx6emwsjslmde0", + "index_offset": "2", + "jailed_until": "2020-02-26T08:38:24.009429044Z", + "missed_blocks_counter": "2", + "start_height": "657370", + "tombstoned": false + }, + "desmosvalcons1fxl3av27g93nw8jqjnm2344jffs7cmgu43676a": { + "address": "desmosvalcons1fxl3av27g93nw8jqjnm2344jffs7cmgu43676a", + "index_offset": "1305738", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "451101", + "tombstoned": false + }, + "desmosvalcons1g5895s4my026q6xmjcullh2smw4tf8w93fztsn": { + "address": "desmosvalcons1g5895s4my026q6xmjcullh2smw4tf8w93fztsn", + "index_offset": "2", + "jailed_until": "2020-04-15T14:41:54.828530968Z", + "missed_blocks_counter": "2", + "start_height": "37687", + "tombstoned": false + }, + "desmosvalcons1hkvz89vzj3y44d9fz0k4yqw5lv4ah84vznqgsp": { + "address": "desmosvalcons1hkvz89vzj3y44d9fz0k4yqw5lv4ah84vznqgsp", + "index_offset": "1068358", + "jailed_until": "2020-02-22T09:09:37.003963438Z", + "missed_blocks_counter": "0", + "start_height": "398490", + "tombstoned": false + }, + "desmosvalcons1jk4x2969x7wd680zw6alyke8cftlxngvlww57t": { + "address": "desmosvalcons1jk4x2969x7wd680zw6alyke8cftlxngvlww57t", + "index_offset": "2", + "jailed_until": "2020-04-27T21:49:29.542178808Z", + "missed_blocks_counter": "2", + "start_height": "35069", + "tombstoned": false + }, + "desmosvalcons1jk63tv9pplzs8l7gqk308mchh7p70eptjpzx96": { + "address": "desmosvalcons1jk63tv9pplzs8l7gqk308mchh7p70eptjpzx96", + "index_offset": "40936", + "jailed_until": "2020-04-28T23:42:58.643380037Z", + "missed_blocks_counter": "0", + "start_height": "31344", + "tombstoned": false + }, + "desmosvalcons1jmp6rwg46c6x2nl3nrnczudzg9zdlf39d34ttl": { + "address": "desmosvalcons1jmp6rwg46c6x2nl3nrnczudzg9zdlf39d34ttl", + "index_offset": "169", + "jailed_until": "2020-01-16T10:42:46.911403437Z", + "missed_blocks_counter": "0", + "start_height": "31171", + "tombstoned": false + }, + "desmosvalcons1k0nxu0r7rssxf86wyemn369yazzjry7dsfmcs0": { + "address": "desmosvalcons1k0nxu0r7rssxf86wyemn369yazzjry7dsfmcs0", + "index_offset": "547099", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "496198", + "tombstoned": false + }, + "desmosvalcons1k6wks6q2gr467n8te3v76k4paf9xylhrq3rgzm": { + "address": "desmosvalcons1k6wks6q2gr467n8te3v76k4paf9xylhrq3rgzm", + "index_offset": "2242766", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "0", + "tombstoned": false + }, + "desmosvalcons1ktp5mu8h28mxhrkygw7mys8tl5f67yv46tdzvy": { + "address": "desmosvalcons1ktp5mu8h28mxhrkygw7mys8tl5f67yv46tdzvy", + "index_offset": "396713", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "720", + "start_height": "646584", + "tombstoned": false + }, + "desmosvalcons1lkhc49g3zv40lcunmvtgwp3ph020rxlawpn78f": { + "address": "desmosvalcons1lkhc49g3zv40lcunmvtgwp3ph020rxlawpn78f", + "index_offset": "145244", + "jailed_until": "2020-04-28T13:12:08.234615785Z", + "missed_blocks_counter": "0", + "start_height": "44950", + "tombstoned": false + }, + "desmosvalcons1mxrd5cyjgpx5vfgltrdufq9wq4ynwc799ndrg8": { + "address": "desmosvalcons1mxrd5cyjgpx5vfgltrdufq9wq4ynwc799ndrg8", + "index_offset": "2242766", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "0", + "tombstoned": false + }, + "desmosvalcons1myshyf8wspceyfevtehjlrnwt56ke9hzhfrw94": { + "address": "desmosvalcons1myshyf8wspceyfevtehjlrnwt56ke9hzhfrw94", + "index_offset": "1638954", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "117885", + "tombstoned": false + }, + "desmosvalcons1n6x4y8srfml6f4xsynyn9y0dtjrfwfhyjpapkf": { + "address": "desmosvalcons1n6x4y8srfml6f4xsynyn9y0dtjrfwfhyjpapkf", + "index_offset": "139713", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "57985", + "tombstoned": false + }, + "desmosvalcons1njm7nf3604rl2n4tkdquz0yuryyfx8zgx2guar": { + "address": "desmosvalcons1njm7nf3604rl2n4tkdquz0yuryyfx8zgx2guar", + "index_offset": "1687197", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "69642", + "tombstoned": false + }, + "desmosvalcons1pjxldh4ye8j2uyrxxe3yj3g47jy4d9zmak29ps": { + "address": "desmosvalcons1pjxldh4ye8j2uyrxxe3yj3g47jy4d9zmak29ps", + "index_offset": "2", + "jailed_until": "2020-01-26T09:49:03.452350932Z", + "missed_blocks_counter": "2", + "start_height": "183951", + "tombstoned": false + }, + "desmosvalcons1q43yf4u7xdyuezv63t32575p0pw3yyw2ge33zj": { + "address": "desmosvalcons1q43yf4u7xdyuezv63t32575p0pw3yyw2ge33zj", + "index_offset": "130042", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "67656", + "tombstoned": false + }, + "desmosvalcons1q4y7zlwvu24yh2cxgrrs56fr38lqsy63ta2wrh": { + "address": "desmosvalcons1q4y7zlwvu24yh2cxgrrs56fr38lqsy63ta2wrh", + "index_offset": "1698189", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "58650", + "tombstoned": false + }, + "desmosvalcons1qxjse4ldv8es4ht75v67mvdmnp5hlp3nsc2msw": { + "address": "desmosvalcons1qxjse4ldv8es4ht75v67mvdmnp5hlp3nsc2msw", + "index_offset": "2", + "jailed_until": "2020-03-04T06:17:38.437320288Z", + "missed_blocks_counter": "2", + "start_height": "47232", + "tombstoned": false + }, + "desmosvalcons1r42xg72zv6vtawmkw6xx0hquw3ttnf2pry4ege": { + "address": "desmosvalcons1r42xg72zv6vtawmkw6xx0hquw3ttnf2pry4ege", + "index_offset": "2", + "jailed_until": "2020-03-09T02:20:48.068423596Z", + "missed_blocks_counter": "2", + "start_height": "121299", + "tombstoned": false + }, + "desmosvalcons1s8h4nset89q7s7qjn59t4r4zlkh0a0efp4gjda": { + "address": "desmosvalcons1s8h4nset89q7s7qjn59t4r4zlkh0a0efp4gjda", + "index_offset": "331698", + "jailed_until": "2020-04-15T07:30:11.983156313Z", + "missed_blocks_counter": "0", + "start_height": "46213", + "tombstoned": false + }, + "desmosvalcons1shagz97e6e48au7u58an6xf2h34qm2uvczndv9": { + "address": "desmosvalcons1shagz97e6e48au7u58an6xf2h34qm2uvczndv9", + "index_offset": "2", + "jailed_until": "2020-04-04T17:38:49.385099828Z", + "missed_blocks_counter": "2", + "start_height": "247523", + "tombstoned": false + }, + "desmosvalcons1sqfd9fxngk7frlg8jhxhv49jvacr8nlra3l7ha": { + "address": "desmosvalcons1sqfd9fxngk7frlg8jhxhv49jvacr8nlra3l7ha", + "index_offset": "1614254", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "142585", + "tombstoned": false + }, + "desmosvalcons1t4e6htkm78cy0vlp97xqes97vfkzmc387vmle4": { + "address": "desmosvalcons1t4e6htkm78cy0vlp97xqes97vfkzmc387vmle4", + "index_offset": "116426", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "81272", + "tombstoned": false + }, + "desmosvalcons1t5vgxhmyg97lfhq4747k75kyvsk4n9p5pu4sd8": { + "address": "desmosvalcons1t5vgxhmyg97lfhq4747k75kyvsk4n9p5pu4sd8", + "index_offset": "2", + "jailed_until": "2020-04-18T22:09:30.337984036Z", + "missed_blocks_counter": "2", + "start_height": "582067", + "tombstoned": false + }, + "desmosvalcons1udw92ulxq2wq05swpuhnns4a6y42xlhwz6q97g": { + "address": "desmosvalcons1udw92ulxq2wq05swpuhnns4a6y42xlhwz6q97g", + "index_offset": "2", + "jailed_until": "2020-02-06T04:27:31.228155207Z", + "missed_blocks_counter": "0", + "start_height": "159580", + "tombstoned": false + }, + "desmosvalcons1uga4khralc934va2e862wgvrzhswuzqsefw0s8": { + "address": "desmosvalcons1uga4khralc934va2e862wgvrzhswuzqsefw0s8", + "index_offset": "9216", + "jailed_until": "2020-05-07T01:26:15.55311133Z", + "missed_blocks_counter": "0", + "start_height": "68079", + "tombstoned": false + }, + "desmosvalcons1v5ejtt5dff85c5zfy8gxea25d92yzrw0lewxyw": { + "address": "desmosvalcons1v5ejtt5dff85c5zfy8gxea25d92yzrw0lewxyw", + "index_offset": "167800", + "jailed_until": "2020-03-30T09:49:35.175761967Z", + "missed_blocks_counter": "0", + "start_height": "19678", + "tombstoned": false + }, + "desmosvalcons1vs6mfhuvyrgjd9uwqv8fgcykqehdgczs0hngzc": { + "address": "desmosvalcons1vs6mfhuvyrgjd9uwqv8fgcykqehdgczs0hngzc", + "index_offset": "2242766", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "0", + "tombstoned": false + }, + "desmosvalcons1wdjkpvmkymxrq5ye9m7afecf3nzhyfccep8ajh": { + "address": "desmosvalcons1wdjkpvmkymxrq5ye9m7afecf3nzhyfccep8ajh", + "index_offset": "2", + "jailed_until": "2020-04-27T15:02:42.768653105Z", + "missed_blocks_counter": "2", + "start_height": "30716", + "tombstoned": false + }, + "desmosvalcons1why72hjk945yhckcy5hzk2z2w9d5h65t9am0kd": { + "address": "desmosvalcons1why72hjk945yhckcy5hzk2z2w9d5h65t9am0kd", + "index_offset": "1082674", + "jailed_until": "2020-02-26T15:01:17.140767682Z", + "missed_blocks_counter": "0", + "start_height": "444424", + "tombstoned": false + }, + "desmosvalcons1wuf54kv2w6fa758t87gjlzkx97ek2dptjsc52w": { + "address": "desmosvalcons1wuf54kv2w6fa758t87gjlzkx97ek2dptjsc52w", + "index_offset": "1676335", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "80504", + "tombstoned": false + }, + "desmosvalcons1x4dc8v28lnvwspa0hxr70za5ypp6jnqmdh8z6t": { + "address": "desmosvalcons1x4dc8v28lnvwspa0hxr70za5ypp6jnqmdh8z6t", + "index_offset": "2", + "jailed_until": "2020-01-18T22:08:03.841911663Z", + "missed_blocks_counter": "2", + "start_height": "69191", + "tombstoned": false + }, + "desmosvalcons1xd7zavv738jxf2th343ka7ytfvhea55908r9nl": { + "address": "desmosvalcons1xd7zavv738jxf2th343ka7ytfvhea55908r9nl", + "index_offset": "1096037", + "jailed_until": "2020-02-26T06:31:42.069077155Z", + "missed_blocks_counter": "0", + "start_height": "34471", + "tombstoned": false + }, + "desmosvalcons1xe4rdry0kunfvcn3a3wf3ay7zpv0rr3az4d8uf": { + "address": "desmosvalcons1xe4rdry0kunfvcn3a3wf3ay7zpv0rr3az4d8uf", + "index_offset": "495643", + "jailed_until": "2020-04-05T07:17:01.205408276Z", + "missed_blocks_counter": "0", + "start_height": "237627", + "tombstoned": false + }, + "desmosvalcons1xmjasmeljjp5xlzqqz6j8zr9czd3c78cduy4hr": { + "address": "desmosvalcons1xmjasmeljjp5xlzqqz6j8zr9czd3c78cduy4hr", + "index_offset": "147119", + "jailed_until": "2020-04-08T13:23:34.07706811Z", + "missed_blocks_counter": "0", + "start_height": "551292", + "tombstoned": false + }, + "desmosvalcons1xvasspfy8g95hv3ylr9esq7mrexzqsf5533wmk": { + "address": "desmosvalcons1xvasspfy8g95hv3ylr9esq7mrexzqsf5533wmk", + "index_offset": "2", + "jailed_until": "2020-02-21T05:15:54.182086578Z", + "missed_blocks_counter": "2", + "start_height": "566370", + "tombstoned": false + }, + "desmosvalcons1y55lyzklnxn4s9qw5s9pzu8gj0uv8pp3n3xyhy": { + "address": "desmosvalcons1y55lyzklnxn4s9qw5s9pzu8gj0uv8pp3n3xyhy", + "index_offset": "225261", + "jailed_until": "1970-01-01T00:00:00Z", + "missed_blocks_counter": "0", + "start_height": "818036", + "tombstoned": false + }, + "desmosvalcons1zjkm5nkfjxnqmlp67drw93cqsmacecsuunclde": { + "address": "desmosvalcons1zjkm5nkfjxnqmlp67drw93cqsmacecsuunclde", + "index_offset": "2", + "jailed_until": "2020-01-30T03:48:43.182091804Z", + "missed_blocks_counter": "2", + "start_height": "241416", + "tombstoned": false + }, + "desmosvalcons1zsyjznzjjesafmjuccrwtrakp7ess7vfvytyxg": { + "address": "desmosvalcons1zsyjznzjjesafmjuccrwtrakp7ess7vfvytyxg", + "index_offset": "166856", + "jailed_until": "2020-04-10T13:26:35.373245772Z", + "missed_blocks_counter": "19", + "start_height": "247294", + "tombstoned": false + } + } + }, + "staking": { + "delegations": [ + { + "delegator_address": "desmos1qrnfe2emyc5p8dvg3luaeta973lvdklk5auhk6", + "shares": "10000000000.000000000000000000", + "validator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug" + }, + { + "delegator_address": "desmos1pqekt0jjlufjm6f4dyzlpxqgmmyhr72esv26cj", + "shares": "10000000.000000000000000000", + "validator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq" + }, + { + "delegator_address": "desmos1puck2v2gar32rxj83s80zupqfehkp2xdwu0yzr", + "shares": "30574840.699788811038292150", + "validator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3" + }, + { + "delegator_address": "desmos1z3sr49arwjltxuq9r5t4ykezphmjks3dnzucmf", + "shares": "9496085.000000000000000000", + "validator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m" + }, + { + "delegator_address": "desmos1rpurg200edtv6rgvfjuf7j6s8mghnsljkzvurg", + "shares": "17500000.000000000000000000", + "validator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6" + }, + { + "delegator_address": "desmos1yhq6pz7rs260lap9madlmnvg6c0tqmzhh5yzmn", + "shares": "6000000.000000000000000000", + "validator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p" + }, + { + "delegator_address": "desmos19u88x09tejnzwpsqnyhgjjglneuxghy6g3da2n", + "shares": "2010101.010101010101010101", + "validator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp" + }, + { + "delegator_address": "desmos1x8stv2pucr2wmunnde6zlavj96fygk9vhek5jm", + "shares": "49997040.000000000000000000", + "validator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf" + }, + { + "delegator_address": "desmos18qu3zck8866dsdd87w03la3w4anej2e2pnerj0", + "shares": "3140921.409214092140921407", + "validator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca" + }, + { + "delegator_address": "desmos1835rcx9ahn0a62pfpufsfj7jwv0vfsw47tk7tz", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps" + }, + { + "delegator_address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "shares": "11101010.101010101010101010", + "validator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l" + }, + { + "delegator_address": "desmos18mheyu8h0qe4c943xw5uganv848we63xgkneqd", + "shares": "20000000.000000000000000000", + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "delegator_address": "desmos1gwnuwmh089put6hayqdk3n0pnm7ghsl42vkg9w", + "shares": "9500000.000000000000000000", + "validator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u" + }, + { + "delegator_address": "desmos1fs39fdhkus69jskyv5s6xsk5wzrtyutpv67ma6", + "shares": "2100000.000000000000000000", + "validator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg" + }, + { + "delegator_address": "desmos1fjjvue580y7ux29hv8qg5kfkf5w26jzsh0gm2g", + "shares": "19292929.292929292929292918", + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "delegator_address": "desmos1txdthvutrrfzzf9htelcnfz655afu4yh30lhfc", + "shares": "40391114.141414141414141412", + "validator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2" + }, + { + "delegator_address": "desmos1t0tzrsn7j80q46634eftc5u8sm39dcxwn2l2dr", + "shares": "2000010.000000000000000000", + "validator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783" + }, + { + "delegator_address": "desmos1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7dzxfys", + "shares": "10000000.000000000000000000", + "validator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz" + }, + { + "delegator_address": "desmos1t74p8wd0thcq6hcnczp9eezaudvrec60y8l4hm", + "shares": "100000.000000000000000000", + "validator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf" + }, + { + "delegator_address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "shares": "909090.909090909090909091", + "validator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl" + }, + { + "delegator_address": "desmos1dqcs9cgw2mv696je4579w7ulexyges73a73s6d", + "shares": "24000000.000000000000000000", + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "delegator_address": "desmos105rr8u0mjqs9wntlmdgx4kskxqa9lv5k5wuaaz", + "shares": "10000000000.000000000000000000", + "validator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs" + }, + { + "delegator_address": "desmos10628h5hm859xsyg7pe2hf9n9jwpn35zlyh94hl", + "shares": "7777777.000000000000000000", + "validator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad" + }, + { + "delegator_address": "desmos1svjxha4pnx5grsqc4cfy7ycv54y4fle3vmxxwh", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9" + }, + { + "delegator_address": "desmos1sscdc90dgwnk456kenk4jst5f5r25dgckhuljx", + "shares": "20101018.181818181818181818", + "validator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5" + }, + { + "delegator_address": "desmos1snmetx9sfrmznr4z6d3lnwlyvwu36sgcpzzhlr", + "shares": "10000000000.000000000000000000", + "validator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43" + }, + { + "delegator_address": "desmos1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8skkphk", + "shares": "9000000.000000000000000000", + "validator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay" + }, + { + "delegator_address": "desmos1397mvzsugyk8jakl2wehwysg96rfa6gv3chwuc", + "shares": "14000000.000000000000000000", + "validator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2" + }, + { + "delegator_address": "desmos132hp6llqevevgwudlg68tg3adawfsaftqfd95w", + "shares": "9000000.000000000000000000", + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "delegator_address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2" + }, + { + "delegator_address": "desmos1js6a3099zf3s729tynf0wr6sr9z47lq3dwvjwc", + "shares": "102.849402335263517782", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "delegator_address": "desmos1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w2c03dr", + "shares": "20300768.629051457334285616", + "validator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983" + }, + { + "delegator_address": "desmos1nsysuwkaestg6jm0qlm2eyt57g97408wz3gl3m", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf" + }, + { + "delegator_address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "shares": "18000000.000000000000000000", + "validator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u" + }, + { + "delegator_address": "desmos15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7sg54pv", + "shares": "11000000.000000000000000000", + "validator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7" + }, + { + "delegator_address": "desmos152dp990japftfdvply2pspeg6dxqaj4stdv5a2", + "shares": "50404040.404040404040404038", + "validator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc" + }, + { + "delegator_address": "desmos15ux5mc98jlhsg30dzwwv06ftjs82uy4g3t99ru", + "shares": "6000000.000000000000000000", + "validator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw" + }, + { + "delegator_address": "desmos14qqq86dq2skkpq09dr72wyxlz4lggcskva05xp", + "shares": "82100652.050456825968561594", + "validator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn" + }, + { + "delegator_address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "shares": "6050505.050505050505050505", + "validator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr" + }, + { + "delegator_address": "desmos148p6gp0kr90v9pcavpvfe0mhdswq27gjy4msu3", + "shares": "3000000.000000000000000000", + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "delegator_address": "desmos14dm0zdemeymhayucp7gchuus3k5m344f3v8nln", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p" + }, + { + "delegator_address": "desmos14wtz9tuxu2ue7lmj3r8dvjajsvaryzttxr7dch", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9" + }, + { + "delegator_address": "desmos1hft999tys0zls577fglv57slvhupyh2k5d7nlt", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e" + }, + { + "delegator_address": "desmos1h25x7t3nx888fuq5994n4e0fmxr3clvlxh0s3d", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml" + }, + { + "delegator_address": "desmos1h5f3dywec65v9qulxkmcv3e6yujyh3zm39lr4r", + "shares": "10000000.000000000000000000", + "validator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3" + }, + { + "delegator_address": "desmos1cgzcj0jwja032zx7hgjuxruqdvppex3nd6dm3e", + "shares": "4030303.030303030303030303", + "validator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt" + }, + { + "delegator_address": "desmos1c3y623kpys5cw6tuustkca7k89kwy95d9mwpza", + "shares": "9078304.040404040404040404", + "validator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0" + }, + { + "delegator_address": "desmos1c6x3ngzedvqva67nx6ay7vsuw8u79ck0qftdc9", + "shares": "19997563.000000000000000000", + "validator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh" + }, + { + "delegator_address": "desmos1e6sueymvr37p3qjztcacmrs0zd0yrkj5uzx7sa", + "shares": "117135184.319631620402828548", + "validator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260" + }, + { + "delegator_address": "desmos16qz02us7tkq2mm0mwl0clqetggrc7u0wa5wy7f", + "shares": "10100000.000000000000000000", + "validator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m" + }, + { + "delegator_address": "desmos168yfpd2t8lvfxwu8lcu0ppuh3kl598g53xq7hk", + "shares": "15000000.000000000000000000", + "validator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay" + }, + { + "delegator_address": "desmos16tvvl94gk33aj27j54u8m2epppvlkrg2vu0l5h", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79" + }, + { + "delegator_address": "desmos16v6h6m2gam7snzmm06s3yh0hz0wt0pprgpcvra", + "shares": "29997035.000000000000000000", + "validator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0" + }, + { + "delegator_address": "desmos16duyf9g0nvseyzsnprt3a30nq9lccqswuz0s3u", + "shares": "9000000.000000000000000000", + "validator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw" + }, + { + "delegator_address": "desmos16um3lf4h2779n5c6grntpaaj39a76umas3ymtd", + "shares": "29997010.000000000000000000", + "validator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl" + }, + { + "delegator_address": "desmos1mrde9k82jk0e9veqzcmgytm39hyzyfz7llyewf", + "shares": "10.000000000000000000", + "validator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym" + }, + { + "delegator_address": "desmos1u0xqasxgl6qkkckd860pt4xjqryxek4y3e66wg", + "shares": "29996071.000000000000000000", + "validator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6" + }, + { + "delegator_address": "desmos1uj9c9929scde78wu3u5r99wcavf2fzl7rdesmh", + "shares": "10000000000.000000000000000000", + "validator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39" + }, + { + "delegator_address": "desmos1uj0jfawnrsdwelq5dx2uh3x4tetca3pdra7qz6", + "shares": "6000000.000000000000000000", + "validator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg" + }, + { + "delegator_address": "desmos17xf8f0ly5evhawvfz2q9u4pvpjq3spfm9wajhs", + "shares": "9500000.000000000000000000", + "validator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz" + }, + { + "delegator_address": "desmos173kc9g05pnfvjr0tkmtxustkmmp0thdnen802u", + "shares": "9000000.000000000000000000", + "validator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw" + }, + { + "delegator_address": "desmos17as8d9yneyk85zm7ruzg0evhl9xfmvpct8dqwx", + "shares": "1000000.000000000000000000", + "validator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5" + } + ], + "exported": true, + "last_total_power": "40627", + "last_validator_powers": [ + { + "Address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug", + "Power": "10000" + }, + { + "Address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "Power": "28" + }, + { + "Address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m", + "Power": "9" + }, + { + "Address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6", + "Power": "17" + }, + { + "Address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp", + "Power": "1" + }, + { + "Address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf", + "Power": "49" + }, + { + "Address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "Power": "2" + }, + { + "Address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps", + "Power": "1" + }, + { + "Address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u", + "Power": "9" + }, + { + "Address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2", + "Power": "39" + }, + { + "Address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz", + "Power": "10" + }, + { + "Address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs", + "Power": "10000" + }, + { + "Address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad", + "Power": "7" + }, + { + "Address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "Power": "19" + }, + { + "Address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43", + "Power": "10000" + }, + { + "Address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay", + "Power": "9" + }, + { + "Address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2", + "Power": "37" + }, + { + "Address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc", + "Power": "49" + }, + { + "Address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "Power": "77" + }, + { + "Address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p", + "Power": "1" + }, + { + "Address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3", + "Power": "10" + }, + { + "Address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt", + "Power": "3" + }, + { + "Address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0", + "Power": "8" + }, + { + "Address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh", + "Power": "19" + }, + { + "Address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "Power": "108" + }, + { + "Address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "Power": "14" + }, + { + "Address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0", + "Power": "29" + }, + { + "Address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl", + "Power": "29" + }, + { + "Address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6", + "Power": "29" + }, + { + "Address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39", + "Power": "10000" + }, + { + "Address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg", + "Power": "5" + }, + { + "Address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz", + "Power": "9" + } + ], + "params": { + "bond_denom": "udaric", + "historical_entries": 0, + "max_entries": 7, + "max_validators": 100, + "unbonding_time": "1814400000000000" + }, + "redelegations": null, + "unbonding_delegations": null, + "validators": [ + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2019-12-11T04:42:14.03384Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqeruwwwrd43f6hl2x9e2kmtam4e29jw0rxs3lugczvcr280yt8qqqaelkcj", + "delegator_shares": "10000000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Athena", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1qrnfe2emyc5p8dvg3luaeta973lvdklk2s5rug", + "status": 2, + "tokens": "10000000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-19T05:06:15.576937919Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqtrzzfvsl7jjg9dys0m25wnjkrvsnz2gkjdxtfjrytcmguh6xn3zstc5dj6", + "delegator_shares": "10000000.000000000000000000", + "description": { + "details": "Nodeasy.com, 助你进入Staking时代!", + "identity": "AB006A79DBD8FC57", + "moniker": "Nodeasy.com", + "security_contact": "", + "website": "https://www.nodeasy.com/" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1pqekt0jjlufjm6f4dyzlpxqgmmyhr72ewpzwjq", + "status": 1, + "tokens": "9900000", + "unbonding_height": "74578", + "unbonding_time": "2020-05-21T09:58:20.662124989Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-18T20:04:15.645638609Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqet6qkh09mcf88zqvamx9ts4q4gjepn8q9dtcj426w22wmzcsamhs30t99g", + "delegator_shares": "30574840.699788811038292150", + "description": { + "details": "", + "identity": "", + "moniker": "AndreyVelde", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1puck2v2gar32rxj83s80zupqfehkp2xds38sg3", + "status": 2, + "tokens": "28280000", + "unbonding_height": "177109", + "unbonding_time": "2020-05-28T01:16:15.55311133Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-12T07:23:09.59623802Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqurcd3mehzx9z0ps8c76wyxj2tawfep3fca5dsdqzrdmjc9mm8k3qrmuwcx", + "delegator_shares": "9496085.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "wukong", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1z3sr49arwjltxuq9r5t4ykezphmjks3dd05v3m", + "status": 2, + "tokens": "9496085", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.050000000000000000", + "max_rate": "0.250000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-12T20:25:32.998149832Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7nue6rj264w94rj3vcfws274tf9jfhkcgm7zkzley2n8qh26ay5q4prehn", + "delegator_shares": "17500000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Mike Snowman Validator", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1rpurg200edtv6rgvfjuf7j6s8mghnsljg0ygf6", + "status": 2, + "tokens": "17500000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-16T09:40:38.657207117Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqnphmrlh03nkh3zdqw95dvtfmyzcpnw2yra8u8fnv83lclnymuqcqjghwpp", + "delegator_shares": "6000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "InchainWorks", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1yhq6pz7rs260lap9madlmnvg6c0tqmzhfevk3p", + "status": 1, + "tokens": "5890000", + "unbonding_height": "31437", + "unbonding_time": "2020-05-18T14:52:42.768653105Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "1.000000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-27T14:44:00.480604877Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqkmfczvn3ry7huluwtpv524hyptw3nvqm576a00s6fhq0fazeh8csvt6n2a", + "delegator_shares": "2010101.010101010101010101", + "description": { + "details": "GoZ Desmos Team!", + "identity": "EA61A46F31742B22", + "moniker": "DragonStake", + "security_contact": "", + "website": "https://dragonstake.io" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper19u88x09tejnzwpsqnyhgjjglneuxghy6ku9fqp", + "status": 2, + "tokens": "1990000", + "unbonding_height": "52427", + "unbonding_time": "2020-05-19T23:32:58.643380037Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.500000000000000000" + }, + "update_time": "2020-01-29T15:16:37.329009347Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqhlcula77wkgsc2lxw6l6jgua28ychvlhp89p3e46j88gn2mrathqvp533a", + "delegator_shares": "49997040.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Wanderer", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1x8stv2pucr2wmunnde6zlavj96fygk9vf57qcf", + "status": 2, + "tokens": "49507040", + "unbonding_height": "362290", + "unbonding_time": "2020-04-14T18:11:42.594117002Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T12:41:28.075489117Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqadk480emwx7kejhrv3jaa32zt2kgckzd6w5q2570qy8nnqtgl9cs6js6k5", + "delegator_shares": "3140921.409214092140921407", + "description": { + "details": "", + "identity": "", + "moniker": "CNazar", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper18qu3zck8866dsdd87w03la3w4anej2e2l73hca", + "status": 2, + "tokens": "2810000", + "unbonding_height": "619604", + "unbonding_time": "2020-05-01T13:16:35.373245772Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-18T22:30:51.338553338Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqg0h9rl7xcz6zl29z4xqvqr6zte7wzd6hl7pzfc009n655e4rturssqakuf", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "8265DEAF50B61DF7", + "moniker": "UbikCapital", + "security_contact": "", + "website": "ubik.capital" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1835rcx9ahn0a62pfpufsfj7jwv0vfsw4qx72ps", + "status": 2, + "tokens": "1000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-17T11:28:53.506179909Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqe5mylnrsv8c6g0g0w888j7cef5zyhew8ft9kdxvfwly4zacxy9pq74fsjf", + "delegator_shares": "11101010.101010101010101010", + "description": { + "details": "", + "identity": "", + "moniker": "Wayne Staking", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper18mheyu8h0qe4c943xw5uganv848we63xkmmd2l", + "status": 0, + "tokens": "10690000", + "unbonding_height": "47953", + "unbonding_time": "2020-03-25T06:07:38.437320288Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-30T20:23:03.912796673Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepquzkuydgufyej4m39ln99dzhac0stpqrftgak7wwpynqhf7yl3s4qhxrpx2", + "delegator_shares": "9500000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "desmosval", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1gwnuwmh089put6hayqdk3n0pnm7ghsl45p7u0u", + "status": 2, + "tokens": "9500000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-22T21:07:39.898484735Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqdl9fvmdyqfw3rw8nq8jkrhtrgrd2wk0hgyp59xqhrzm7lr4hr04smmp4nz", + "delegator_shares": "2100000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "adorid2", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1fs39fdhkus69jskyv5s6xsk5wzrtyutpjhk0hg", + "status": 0, + "tokens": "2080000", + "unbonding_height": "349033", + "unbonding_time": "2020-02-27T04:17:31.228155207Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T22:18:47.920881373Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq4hpam02khlenma5qpdrwnhhtt4m4lqmffka94ates0mw8v20wfaqz9jac0", + "delegator_shares": "40391114.141414141414141412", + "description": { + "details": "...", + "identity": "B4AD06F0EB355573", + "moniker": "KalpaTech", + "security_contact": "", + "website": "https://kalpatech.co" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1txdthvutrrfzzf9htelcnfz655afu4yh0zhrr2", + "status": 2, + "tokens": "39987203", + "unbonding_height": "253534", + "unbonding_time": "2020-02-20T22:28:17.754789733Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-24T15:27:02.726013939Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq5rq0ex5chw00jp932570km36llx5cw843mhhh9rzwukuz3fjsacqnhgftg", + "delegator_shares": "2000010.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "defistaker", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1t0tzrsn7j80q46634eftc5u8sm39dcxwd8h783", + "status": 0, + "tokens": "1980010", + "unbonding_height": "184052", + "unbonding_time": "2020-02-16T09:39:03.452350932Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "0.100000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-22T02:01:06.648708018Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq4w5c0uuuup4rqpkry9nd0kc9n9v5xzmg6y8u9h9f6zjx8r2f9wjqv2f7dh", + "delegator_shares": "10000000.000000000000000000", + "description": { + "details": "Cosmostation", + "identity": "", + "moniker": "JayB", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1t0v7ymj7dwe25pp9nh2wuq9u4crmhun7n0wawz", + "status": 2, + "tokens": "10000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-25T07:58:38.660612475Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqr6hkr7ukqc0pfdlgz23vyqmz7raptazz6675qxv234snzf8nutcq2utuam", + "delegator_shares": "100000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "ilav", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1t74p8wd0thcq6hcnczp9eezaudvrec6062hpaf", + "status": 0, + "tokens": "100000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.399900000000000000", + "rate": "0.099900000000000000" + }, + "update_time": "2020-01-16T10:23:18.881881105Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqt5pylvv2szsxm5pnycey0pqx57p2tageyac8ks2ndpth5sm5kcaqrf6n82", + "delegator_shares": "909090.909090909090909091", + "description": { + "details": "", + "identity": "", + "moniker": "blockscape", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1dqcs9cgw2mv696je4579w7ulexyges73rneysl", + "status": 0, + "tokens": "900000", + "unbonding_height": "32829", + "unbonding_time": "2020-02-06T12:58:41.09453021Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2019-12-11T04:42:14.03384Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqjn74wls583jk9qjaq77rzjjtdqr0nqkk5ruqptzc0jvklfuwdyxsz22aux", + "delegator_shares": "10000000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Hermes", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper105rr8u0mjqs9wntlmdgx4kskxqa9lv5k2r5fhs", + "status": 2, + "tokens": "10000000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.500000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.117000000000000000" + }, + "update_time": "2020-04-02T11:59:40.968210478Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqd777g20edy75mna0qg5p63le6xtj9ydh7m6p3yl7t7epyjsft4ssdczeq4", + "delegator_shares": "7777777.000000000000000000", + "description": { + "details": "A self-employed developer who likes to hack around new technology. Prefer to be anonymous!", + "identity": "04727F438AC37C45", + "moniker": "Cookproman", + "security_contact": "", + "website": "https://cookproman.github.io" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper10628h5hm859xsyg7pe2hf9n9jwpn35zl66dpad", + "status": 2, + "tokens": "7777777", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-08T02:29:04.431925489Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqvlsamd0n82uj6kyczhv36m2tx6tj38ajnyp2qnvgeh9kvd56mq0saxslej", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "KysenPool.io", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1svjxha4pnx5grsqc4cfy7ycv54y4fle3jkwjy9", + "status": 1, + "tokens": "990000", + "unbonding_height": "747326", + "unbonding_time": "2020-05-09T21:59:30.337984036Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-17T07:55:03.22515349Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq5aqny0hy59s2e5fnz33hen70apvahqhl4upr0zycr2hygw8xf9hskgjz7x", + "delegator_shares": "20101018.181818181818181818", + "description": { + "details": "", + "identity": "DA9C5AD3E308E426", + "moniker": "WeStaking", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1sscdc90dgwnk456kenk4jst5f5r25dgcg65tc5", + "status": 2, + "tokens": "19520008", + "unbonding_height": "45671", + "unbonding_time": "2020-05-19T13:02:08.234615785Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2019-12-11T04:42:14.03384Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqsar2anrjyl5dqxwrrwht8cnyqeg30mayeqk4vpwjs4xutvz8anpqw6m4wx", + "delegator_shares": "10000000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Apollo", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1snmetx9sfrmznr4z6d3lnwlyvwu36sgcl02r43", + "status": 2, + "tokens": "10000000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.200000000000000000" + }, + "update_time": "2020-01-23T16:41:23.215676935Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqrq4vzaq8maffhryxpv6p6p80dl8425rfzapj67fgdkn8uaqd4slq74sr5p", + "delegator_shares": "9000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "DESMOS-IW", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1se6x7qs9fq2wjwqpa4e3rt349r6pqcc8wm74ay", + "status": 2, + "tokens": "9000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.399900000000000000", + "rate": "0.099900000000000000" + }, + "update_time": "2020-01-16T15:32:35.347113511Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqge5gmwgau7ypvqatuv6gfgp3ezz86ylnn3a7f2n7tkewkewhqvrq4j6y4u", + "delegator_shares": "38000000.000000000000000000", + "description": { + "details": "", + "identity": "C46C8329BB5F48D8", + "moniker": "blockscape", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1397mvzsugyk8jakl2wehwysg96rfa6gv04l6k2", + "status": 2, + "tokens": "37620000", + "unbonding_height": "656127", + "unbonding_time": "2020-03-18T06:21:42.069077155Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T18:53:56.104133382Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7clk78zf6yz98c9tdhqzhfy377xewrl78ng856mjkm332c2pef9s27289t", + "delegator_shares": "27000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "GRom81", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper132hp6llqevevgwudlg68tg3adawfsaft7y937u", + "status": 0, + "tokens": "26730000", + "unbonding_height": "518947", + "unbonding_time": "2020-03-09T06:57:58.089117455Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-03-19T02:23:48.670871878Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7skcwvv03kn8c0x6a0epf78sdkcdzpx8g2heq83dgdtywlzwv4pskt4ak7", + "delegator_shares": "20292929.292929292929292918", + "description": { + "details": "Cat Magician", + "identity": "", + "moniker": "Magic_Cat", + "security_contact": "", + "website": "https://desmos.network" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1js6a3099zf3s729tynf0wr6sr9z47lq3nryxy2", + "status": 0, + "tokens": "19890000", + "unbonding_height": "530346", + "unbonding_time": "2020-04-25T17:28:49.385099828Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.050000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-21T09:58:46.566771703Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqm0l99ya3n3mx7puhgg7qhjxnrjt3umxyy7k84csd32j2pu7mjtfsh86jz2", + "delegator_shares": "20300768.629051457334285616", + "description": { + "details": "Bi23 focuses on the Crypto-Assets, providing customers with Staking and DeFi services.", + "identity": "EB3470949B3E89E2", + "moniker": "Bi23 Labs", + "security_contact": "", + "website": "https://bi23.com" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1ng8fj3ev0jmdyqxyx3pp5klr9xdz3j4w548983", + "status": 1, + "tokens": "19740000", + "unbonding_height": "108363", + "unbonding_time": "2020-05-23T14:30:13.52432244Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-19T05:09:10.185747106Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqhpcmnnfjjukdu3mmruvkgvm832vjz33yztsk65tex9zql3tkakfqeljl06", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "yun", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1nsysuwkaestg6jm0qlm2eyt57g97408wuuqtmf", + "status": 1, + "tokens": "990000", + "unbonding_height": "74609", + "unbonding_time": "2020-05-21T10:01:13.745587335Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-31T06:57:31.819294648Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqdyz3vtnl0h3xy3a6dtmy8mdf89mvmxpmgdnaxud3ylcc4lwwge3s8zv0qh", + "delegator_shares": "11000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Alive29", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper15g02y3ct3p95yhhh2ywv0j2v8pwxs4w7w9upt7", + "status": 0, + "tokens": "10890000", + "unbonding_height": "518941", + "unbonding_time": "2020-03-09T06:57:24.021167357Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-30T10:07:27.502991586Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq9923az5444srax742atav6pchyg6lk2qd0uklm0k5s6xf0hu2s7sawaaut", + "delegator_shares": "50404040.404040404040404038", + "description": { + "details": "Simply Staking runs highly reliable and secure infrastructure in our own datacentre in Malta, built with the aim of supporting the growth of the blockchain ecosystem.", + "identity": "F74595D6D5D568A2", + "moniker": "Simply Staking", + "security_contact": "", + "website": "https://simply-vc.com.mt/" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper152dp990japftfdvply2pspeg6dxqaj4s4qyqhc", + "status": 2, + "tokens": "49900000", + "unbonding_height": "661534", + "unbonding_time": "2020-03-18T14:51:17.140767682Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-03-03T14:00:32.882045252Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqhfa20zfgex57v5kxrdmpyrxx7l7rfts74k42krwm0kh37ph48k8qmmpmlr", + "delegator_shares": "26000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Wayne Stake", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper15ux5mc98jlhsg30dzwwv06ftjs82uy4g0xd3fw", + "status": 0, + "tokens": "25740000", + "unbonding_height": "697119", + "unbonding_time": "2020-05-06T14:31:54.828530968Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-19T23:11:37.312654476Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqp30fv6f4adg339gxrds3xhhxlk2y6axf0mpdux9mzece3c76hqxqyd3ch6", + "delegator_shares": "82100652.050456825968561594", + "description": { + "details": "", + "identity": "", + "moniker": "Bambarello", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper14qqq86dq2skkpq09dr72wyxlz4lggcskjs8qvn", + "status": 2, + "tokens": "77357050", + "unbonding_height": "218069", + "unbonding_time": "2020-04-05T08:28:02.152450862Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-22T10:03:59.333092758Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqxxxhuvhtx347zeusupvv6k0yt0njz54x377na89q78nzj4a2djys7t24xp", + "delegator_shares": "6050505.050505050505050505", + "description": { + "details": "", + "identity": "D708E3F284C9AD86", + "moniker": "v-inevitable", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper148p6gp0kr90v9pcavpvfe0mhdswq27gj6cnykr", + "status": 0, + "tokens": "5890000", + "unbonding_height": "166515", + "unbonding_time": "2020-02-15T06:10:17.131718997Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-23T13:33:14.753100008Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqx3pvcyvs97a9zaxmq7d3p93c5d77teecrt07kvl8vejsne3pt6fscg3j32", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "72FA05B22F47EB17", + "moniker": "Minutemen", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper14dm0zdemeymhayucp7gchuus3k5m344f0p084p", + "status": 2, + "tokens": "1000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-20T21:38:56.922002697Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqk2m3m0xwmuxrljpzmg90zf7jj58c2n5j8ap7n9spsa0hh58fus4q9rlzzp", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "adorid", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper14wtz9tuxu2ue7lmj3r8dvjajsvaryzttcwkej9", + "status": 0, + "tokens": "990000", + "unbonding_height": "99866", + "unbonding_time": "2020-02-10T21:48:26.16886711Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-26T08:18:48.537383085Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqrgls8jwc37mrzu24clk6yy78hrcldyct6utnkns2lzfpdhpcrl9qwflj86", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "dilav", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1hft999tys0zls577fglv57slvhupyh2k2qk84e", + "status": 0, + "tokens": "990000", + "unbonding_height": "657471", + "unbonding_time": "2020-03-18T08:28:24.009429044Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-18T21:48:34.872470093Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7wg0xx06t82qwv9vazehcnle5vstff6jwf4elt8nwx2y46nh4zkq4gfdwa", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "opt52", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1h25x7t3nx888fuq5994n4e0fmxr3clvlc68yml", + "status": 0, + "tokens": "990000", + "unbonding_height": "69292", + "unbonding_time": "2020-02-08T21:58:03.841911663Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "1.000000000000000000", + "max_rate": "1.000000000000000000", + "rate": "1.000000000000000000" + }, + "update_time": "2020-01-19T15:30:05.575762778Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq5hr305vg72ugg80ss7839ngdxz0wxyas4unte2rvqw0ujsrskfnse7gr6g", + "delegator_shares": "10000000.000000000000000000", + "description": { + "details": "Investieren Sie mit uns in die besten Blockchain Projekte", + "identity": "7EBA7730A85C865C", + "moniker": "Masternode24", + "security_contact": "", + "website": "https://masternode24.de" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1h5f3dywec65v9qulxkmcv3e6yujyh3zm0ghhl3", + "status": 2, + "tokens": "10000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-08T21:37:07.16971769Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqxc4hw8lq7789dzdvd8g7c9jxn0xsrklxsk80plzmu58dwtcqgzmqzj9jzx", + "delegator_shares": "4030303.030303030303030303", + "description": { + "details": "", + "identity": "", + "moniker": "ChainodeTech", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1cgzcj0jwja032zx7hgjuxruqdvppex3nnh90mt", + "status": 2, + "tokens": "3960000", + "unbonding_height": "391156", + "unbonding_time": "2020-02-29T22:21:13.584250919Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-17T09:53:24.606476179Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqpeqmhj9cm2gwg9x8ue9pwseq43qcn9melkrh4etjnzvtpgeftt0q00xhlv", + "delegator_shares": "9078304.040404040404040404", + "description": { + "details": "Virgos are perfectionist at heart and aren’t afraid to improve skills through diligent and consistent practice. We are Virgo", + "identity": "D54A82783A3F4F8E", + "moniker": "Virgo Staking", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1c3y623kpys5cw6tuustkca7k89kwy95dmkx4g0", + "status": 2, + "tokens": "8907521", + "unbonding_height": "692519", + "unbonding_time": "2020-05-06T07:20:11.983156313Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-18T05:19:45.19846513Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq7hk77mvfczstc4ycee5pgvy76u482jelpwvz0c0qeqa3mecwma7szq4ax0", + "delegator_shares": "19997563.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "witval", + "security_contact": "", + "website": "https://www.vitwit.com/" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1c6x3ngzedvqva67nx6ay7vsuw8u79ck07yrejh", + "status": 2, + "tokens": "19997563", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-19T13:47:32.802480914Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqj8r5dggdg34s7r0h3m39lvxhftd6xd8gq7a7qgs0dd0vwv2dr4eqptkmtc", + "delegator_shares": "117135287.169033955666346330", + "description": { + "details": "", + "identity": "", + "moniker": "lixoy", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1e6sueymvr37p3qjztcacmrs0zd0yrkj5z0w260", + "status": 2, + "tokens": "108340100", + "unbonding_height": "163457", + "unbonding_time": "2020-05-27T04:03:56.258314599Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-20T08:31:24.564325696Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqwenxx90h579vcytuhhsfek96d7ytsekh4k0a4tpjrqf82z0aardq92hnln", + "delegator_shares": "10100000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "prano", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16qz02us7tkq2mm0mwl0clqetggrc7u0wrexs5m", + "status": 0, + "tokens": "10000000", + "unbonding_height": "578906", + "unbonding_time": "2020-03-13T05:05:54.182086578Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "0.900000000000000000", + "rate": "0.500000000000000000" + }, + "update_time": "2020-01-15T16:27:02.66053567Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqtnvuechcxsjtqr3lldl4txvk70cwe78gme3cvw6j2wzsc488vrpsee5pqy", + "delegator_shares": "15000000.000000000000000000", + "description": { + "details": "Let's validate this network!", + "identity": "5422BE13389B2B4D", + "moniker": "novy", + "security_contact": "", + "website": "https://stake.novy.pw" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper168yfpd2t8lvfxwu8lcu0ppuh3kl598g50tg2ay", + "status": 2, + "tokens": "14430000", + "unbonding_height": "448774", + "unbonding_time": "2020-04-20T09:39:35.175761967Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T07:24:55.749752378Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq0z5wjacajplpndr99ht2wmqlyz5m4sv7zr3fm4gnslrrkghu99tqva2hnq", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Bit Cat", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16tvvl94gk33aj27j54u8m2epppvlkrg2j38t79", + "status": 0, + "tokens": "990000", + "unbonding_height": "244646", + "unbonding_time": "2020-04-07T02:03:07.858492071Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-29T21:33:07.718295079Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqewtqf0tpfhv6vd00e8lx6nvgae6zd767pt7w6tfsfzcks26e49uq2eck4h", + "delegator_shares": "29997035.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Julia", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16v6h6m2gam7snzmm06s3yh0hz0wt0pprkvscf0", + "status": 2, + "tokens": "29707035", + "unbonding_height": "539056", + "unbonding_time": "2020-04-26T07:07:01.205408276Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.050000000000000000", + "max_rate": "0.250000000000000000", + "rate": "0.080000000000000000" + }, + "update_time": "2020-01-22T07:21:52.923662259Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq0enzxwhnsgt3ydzfcp698g00kdnp3vz83psl70cwj9z26xldta6skgdhu4", + "delegator_shares": "12000000.000000000000000000", + "description": { + "details": "", + "identity": "54B06E98BB583083", + "moniker": "multiverse", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16duyf9g0nvseyzsnprt3a30nq9lccqswz08ymw", + "status": 0, + "tokens": "11770000", + "unbonding_height": "122020", + "unbonding_time": "2020-03-30T02:10:48.068423596Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.100000000000000000", + "max_rate": "1.000000000000000000", + "rate": "0.900000000000000000" + }, + "update_time": "2020-02-19T09:43:36.468668545Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq8lqenyzv8fyg7akj7fl8a4xg9ecetu6sw4ey82qemut6d3wtqkzsdr82yg", + "delegator_shares": "29997010.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Breader", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper16um3lf4h2779n5c6grntpaaj39a76umawuv0pl", + "status": 2, + "tokens": "29707010", + "unbonding_height": "588924", + "unbonding_time": "2020-04-29T13:13:34.07706811Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T20:25:59.986346556Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqmxsurupjcfz95svwa6fkv9guqflmpam0pnanjjkwkvsuz8ct46lq5kgl22", + "delegator_shares": "10.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "stakervali", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1mrde9k82jk0e9veqzcmgytm39hyzyfz7pjvdym", + "status": 0, + "tokens": "10", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-29T08:11:27.525628921Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqwp7r7hk7uwwh2n6pncay3e8d5qs6e4ma45jk5t05k7wx943qa8ksry9sqj", + "delegator_shares": "29996071.000000000000000000", + "description": { + "details": "Italian Community DPos Stakers", + "identity": "06E7A073C20F48EA", + "moniker": "ITAstakers", + "security_contact": "", + "website": "https://www.itastakers.com" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6", + "status": 2, + "tokens": "29996071", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2019-12-11T04:42:14.03384Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepq3sq9937a42k30cs7mxzv4u6l8x97kl0qv4ng4hjjcwanjrvtcf2snjnyhf", + "delegator_shares": "10000000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Poseidon", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1uj9c9929scde78wu3u5r99wcavf2fzl7aq3y39", + "status": 2, + "tokens": "10000000000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-02-09T09:51:06.952076756Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqhpu6fgjjpc0da52d874l0x4t50ej59qdyuxvw9k6et48yngy4rnqe4ufxd", + "delegator_shares": "6000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "Cyberili", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper1uj0jfawnrsdwelq5dx2uh3x4tetca3pdask5gg", + "status": 2, + "tokens": "5890000", + "unbonding_height": "596665", + "unbonding_time": "2020-03-14T08:59:37.003963438Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-04-29T23:13:03.183172176Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqh0ulq9t8tctrlemg0qd8e2yxk0jpfxd7pglts0zsvnm75r2srz9sfag434", + "delegator_shares": "9500000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "InchainWorks", + "security_contact": "", + "website": "" + }, + "jailed": false, + "min_self_delegation": "1", + "operator_address": "desmosvaloper17xf8f0ly5evhawvfz2q9u4pvpjq3spfmmr4xaz", + "status": 2, + "tokens": "9500000", + "unbonding_height": "0", + "unbonding_time": "1970-01-01T00:00:00Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-16T16:28:39.442985055Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqkuwyqsrm48y0wyn6v780da22j04cttz3krd263e67m5v79kjv8yq8svrc5", + "delegator_shares": "9000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "desmosval", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper173kc9g05pnfvjr0tkmtxustkmmp0thdn870mqw", + "status": 1, + "tokens": "8830000", + "unbonding_height": "35790", + "unbonding_time": "2020-05-18T21:39:29.542178808Z" + }, + { + "commission": { + "commission_rates": { + "max_change_rate": "0.010000000000000000", + "max_rate": "0.200000000000000000", + "rate": "0.100000000000000000" + }, + "update_time": "2020-01-30T03:29:13.684029869Z" + }, + "consensus_pubkey": "desmosvalconspub1zcjduepqm07f63500z2h7w02spxas7f6sfj460cq6pxg59yya700fprqluqs75nfxm", + "delegator_shares": "1000000.000000000000000000", + "description": { + "details": "", + "identity": "", + "moniker": "choose a moniker", + "security_contact": "", + "website": "" + }, + "jailed": true, + "min_self_delegation": "1", + "operator_address": "desmosvaloper17as8d9yneyk85zm7ruzg0evhl9xfmvpc4295y5", + "status": 0, + "tokens": "990000", + "unbonding_height": "241517", + "unbonding_time": "2020-02-20T03:38:43.182091804Z" + } + ] + }, + "supply": { + "supply": [ + { + "amount": "7999984460000", + "denom": "udaric" + }, + { + "amount": "80000000000000", + "denom": "upotin" + } + ] + } + }, + "chain_id": "morpheus-4000", + "consensus_params": { + "block": { + "max_bytes": "22020096", + "max_gas": "-1", + "time_iota_ms": "1000" + }, + "evidence": { + "max_age_duration": "172800000000000", + "max_age_num_blocks": "100000" + }, + "validator": { + "pub_key_types": [ + "ed25519" + ] + } + }, + "genesis_time": "2020-04-25T13:45:00Z", + "validators": [ + { + "address": "", + "name": "Athena", + "power": "10000", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "yPjnOG2sU6v9Ri5Vba+7rlRZOeM0I/4jAmYGo7yLOAA=" + } + }, + { + "address": "", + "name": "AndreyVelde", + "power": "28", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "yvQLXeXeEnOIDO7MVcKgqiWQzOArV4lVWnKU7YsQ7u8=" + } + }, + { + "address": "", + "name": "wukong", + "power": "9", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "4PDY7zcRiieGB8e04hpKX1ychinHaNg0Aht3LBd7PaI=" + } + }, + { + "address": "", + "name": "Mike Snowman Validator", + "power": "17", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "9PmdDkrVXFqOUWYS6CvVWksk3thG/CsL+SKmcF1a6Sg=" + } + }, + { + "address": "", + "name": "DragonStake", + "power": "1", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "ttOBMnEZPX5/jlhZRVbkCt0ZsBuntde+Gk3A9PRZufE=" + } + }, + { + "address": "", + "name": "Wanderer", + "power": "49", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "v/HP9951kQwr5na/qSOdUcmLs/cJyhjmupHOiatj6u4=" + } + }, + { + "address": "", + "name": "CNazar", + "power": "2", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "621TvztxvWzK42Rl3sVCWqyMWE3TqAVTzwEPOYFo+XE=" + } + }, + { + "address": "", + "name": "UbikCapital", + "power": "1", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "Q+5R/8bAtC+ooqmAwA9CXnzhN1f/giTh7yz1SmajXwc=" + } + }, + { + "address": "", + "name": "desmosval", + "power": "9", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "4K3CNRxJMyruJfzKVor9w+CwgGlaO285wSTBdPifjCo=" + } + }, + { + "address": "", + "name": "KalpaTech", + "power": "39", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "rcPdvVa/8z32gAtG6d7rXXdfg2lNulr1eYP247FPcno=" + } + }, + { + "address": "", + "name": "JayB", + "power": "10", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "q6mH85zgajAGwyFm19sFmVlDC2jRD8LcqdCkY41JK6Q=" + } + }, + { + "address": "", + "name": "Hermes", + "power": "10000", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "lP1XfhQ8ZWKCXQe8MUpLaAb5gtag+ACsWHyZb6eOaQ0=" + } + }, + { + "address": "", + "name": "Cookproman", + "power": "7", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "b73kKflpPU3PrwIoHUf50Zcikbf29BiT/l+yEkoJXWE=" + } + }, + { + "address": "", + "name": "WeStaking", + "power": "19", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "p0EyPuShYKzRMxRjfM/P6Fnbgv+vAjeImBquRDjmSW8=" + } + }, + { + "address": "", + "name": "Apollo", + "power": "10000", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "h0auzHIn6NAZwxuus+JkBlEX76TILVYF0oVNxbBH7MI=" + } + }, + { + "address": "", + "name": "DESMOS-IW", + "power": "9", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "GCrBdAffUpuMhgs0HQTvb89VUGkXQy15KG2mfnQNrD4=" + } + }, + { + "address": "", + "name": "blockscape", + "power": "37", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "RmiNuR3niBYDq+M0hKAxyIR9E/Oce+Sqfl2y62XXAwY=" + } + }, + { + "address": "", + "name": "Simply Staking", + "power": "49", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "KVUeipWtYD6b1VdX1mg4uRGv2UBr+W/t9qQ0ZL78VD0=" + } + }, + { + "address": "", + "name": "Bambarello", + "power": "77", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "DF6WaTXrURiVBhthE17m/ZRNdMl+wt4YuxZxmOPauAw=" + } + }, + { + "address": "", + "name": "Minutemen", + "power": "1", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "NELMEZAvulF02webEJY4o33l5zga3+sz52ZlCeYhXpM=" + } + }, + { + "address": "", + "name": "Masternode24", + "power": "10", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "pccX0YjyuIQd8IePEs0NMJ7jE7CvJryobAOfyUBwsmc=" + } + }, + { + "address": "", + "name": "ChainodeTech", + "power": "3", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "Nit3H+D3jlaJrGnR7BZGm80B2+aFjvD8W+UO1y8AQLY=" + } + }, + { + "address": "", + "name": "Virgo Staking", + "power": "8", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "DkG7yLjakOQUx+ZKF0MgrEGJl3n9h3rlcpiYsKMpWt4=" + } + }, + { + "address": "", + "name": "witval", + "power": "19", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "9e3vbYnAoLxUmM5oFDCe1yp1Sz8LmCfh4Mg7HecO330=" + } + }, + { + "address": "", + "name": "lixoy", + "power": "108", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "kcdGoQ1Eaw8N947iX7DXStujNOgHu+AiD2texzFNHXI=" + } + }, + { + "address": "", + "name": "novy", + "power": "14", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "XNnM4vg0JLAOP/t/VZmW8/Ds+OjeY4Y7UlOFDFTnYMM=" + } + }, + { + "address": "", + "name": "Julia", + "power": "29", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "y5YEvWFN2aY178n+bU2I7nQm+14K/O0tMEixaCtZqXg=" + } + }, + { + "address": "", + "name": "Breader", + "power": "29", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "P8GZkEw6SI920vJ+ftTILnGV81B1ckOoGd8XpsXLBYU=" + } + }, + { + "address": "", + "name": "ITAstakers", + "power": "29", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "cHw/Xt7jnXVPQZ46SOTtoCGs132tJWot9LecYtYg6e0=" + } + }, + { + "address": "", + "name": "Poseidon", + "power": "10000", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "jABSx92qrRfiHtmEyvNfOYvrfeBlZoreUsO7OQ2LwlU=" + } + }, + { + "address": "", + "name": "Cyberili", + "power": "5", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "uHmkolIOHt7RTT+r95qro/MqFA0nDMcW2srqck0EqOY=" + } + }, + { + "address": "", + "name": "InchainWorks", + "power": "9", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "u/nwFWdeFj/naHgafKiGs+QUmb4KPrg8UGT36g1QGIs=" + } + } + ] +} diff --git a/x/reports/alias.go b/x/reports/alias.go index 7b86e85746..33aa6b5df3 100755 --- a/x/reports/alias.go +++ b/x/reports/alias.go @@ -16,66 +16,66 @@ import ( ) const ( + OpWeightMsgReportPost = simulation.OpWeightMsgReportPost + DefaultGasValue = simulation.DefaultGasValue + EventTypePostReported = types.EventTypePostReported + AttributeKeyPostID = types.AttributeKeyPostID + AttributeKeyReportOwner = types.AttributeKeyReportOwner ModuleName = common.ModuleName RouterKey = common.RouterKey StoreKey = common.StoreKey ActionReportPost = common.ActionReportPost QuerierRoute = common.QuerierRoute QueryReports = common.QueryReports - OpWeightMsgReportPost = simulation.OpWeightMsgReportPost - DefaultGasValue = simulation.DefaultGasValue - EventTypePostReported = types.EventTypePostReported - AttributeKeyPostID = types.AttributeKeyPostID - AttributeKeyReportOwner = types.AttributeKeyReportOwner ) var ( // functions aliases + NewMsgReportPost = msgs.NewMsgReportPost + RegisterMessagesCodec = msgs.RegisterMessagesCodec + GetQueryCmd = cli.GetQueryCmd + GetCmdQueryPostReports = cli.GetCmdQueryPostReports + GetTxCmd = cli.GetTxCmd + GetCmdReportPost = cli.GetCmdReportPost RegisterRoutes = rest.RegisterRoutes + NewHandler = keeper.NewHandler + NewKeeper = keeper.NewKeeper NewQuerier = keeper.NewQuerier RegisterInvariants = keeper.RegisterInvariants AllInvariants = keeper.AllInvariants ValidReportsIDs = keeper.ValidReportsIDs - NewHandler = keeper.NewHandler - NewKeeper = keeper.NewKeeper + RandomizedGenState = simulation.RandomizedGenState + DecodeStore = simulation.DecodeStore SimulateMsgReportPost = simulation.SimulateMsgReportPost RandomReportsData = simulation.RandomReportsData RandomPostID = simulation.RandomPostID RandomReportMessage = simulation.RandomReportMessage RandomReportTypes = simulation.RandomReportTypes WeightedOperations = simulation.WeightedOperations - RandomizedGenState = simulation.RandomizedGenState - DecodeStore = simulation.DecodeStore NewGenesisState = types.NewGenesisState DefaultGenesisState = types.DefaultGenesisState ValidateGenesis = types.ValidateGenesis RegisterCodec = types.RegisterCodec - NewReport = models.NewReport - RegisterModelsCodec = models.RegisterModelsCodec ReportStoreKey = models.ReportStoreKey NewReportResponse = models.NewReportResponse - NewMsgReportPost = msgs.NewMsgReportPost - RegisterMessagesCodec = msgs.RegisterMessagesCodec - GetQueryCmd = cli.GetQueryCmd - GetCmdQueryPostReports = cli.GetCmdQueryPostReports - GetTxCmd = cli.GetTxCmd - GetCmdReportPost = cli.GetCmdReportPost + NewReport = models.NewReport + RegisterModelsCodec = models.RegisterModelsCodec // variable aliases + ModuleCdc = types.ModuleCdc + ModelsCdc = models.ModelsCdc ReportsStorePrefix = common.ReportsStorePrefix ReportsTypeStorePrefix = common.ReportsTypeStorePrefix MsgsCodec = msgs.MsgsCodec - ModuleCdc = types.ModuleCdc - ModelsCdc = models.ModelsCdc ) type ( - Report = models.Report - Reports = models.Reports - ReportsQueryResponse = models.ReportsQueryResponse MsgReportPost = msgs.MsgReportPost ReportPostReq = rest.ReportPostReq Keeper = keeper.Keeper ReportsData = simulation.ReportsData GenesisState = types.GenesisState + ReportsQueryResponse = models.ReportsQueryResponse + Report = models.Report + Reports = models.Reports ) diff --git a/x/reports/internal/types/alias.go b/x/reports/internal/types/alias.go index b61ff356a5..cf3d7b489b 100644 --- a/x/reports/internal/types/alias.go +++ b/x/reports/internal/types/alias.go @@ -36,8 +36,8 @@ var ( ) type ( + MsgReportPost = msgs.MsgReportPost ReportsQueryResponse = models.ReportsQueryResponse Report = models.Report Reports = models.Reports - MsgReportPost = msgs.MsgReportPost ) From e10138da54c26f1389a89a863c78d540b51f5736 Mon Sep 17 00:00:00 2001 From: bragaz Date: Wed, 1 Jul 2020 14:16:25 +0200 Subject: [PATCH 11/11] fixed profile migrate test --- x/profiles/legacy/v0.8.0/migrate_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/profiles/legacy/v0.8.0/migrate_test.go b/x/profiles/legacy/v0.8.0/migrate_test.go index 2abd7dcc02..14a2740366 100644 --- a/x/profiles/legacy/v0.8.0/migrate_test.go +++ b/x/profiles/legacy/v0.8.0/migrate_test.go @@ -56,10 +56,10 @@ func TestMigrate080(t *testing.T) { } func TestConvertProfiles(t *testing.T) { - user1, err := sdk.AccAddressFromBech32("cosmos184ma3twcfjqef6k95ne8w2hk80x2kah7vcwy4a") + user1, err := sdk.AccAddressFromBech32("desmos1rzgjtjudpn4ppj0g7lj7vvcd2cxsjcvvyyatkw") require.NoError(t, err) - user2, err := sdk.AccAddressFromBech32("cosmos1z4hfrxvlgl4s8u4n5ngjcw8kdqrcv43599amxs") + user2, err := sdk.AccAddressFromBech32("desmos18nx27z75wp8xk9j2t73hl6ggpnwpgqa8a423vg") require.NoError(t, err) genesisTime, err := time.Parse(time.RFC3339, "2020-01-01T15:00:00Z")